PHP server
What is the best server to use for php ?
1 Reply
any that isn't
php -S
and that works with php
now, if you want the fastest, then nginx with php-fpm will be at the top
if you want the most common, it's apache2 with eithet mod-php or php-fpm
it is also what's used on cheap/free hosts
if you want the easiest to develop locally and just locally and never ever ever anyone else will ever touch your website (like a dev environment), then php -S
might be just enough