Comments on Installing Nginx With PHP5 (And PHP-FPM) And MySQL Support (LEMP) On Ubuntu 13.04
Nginx (pronounced "engine x") is a free, open-source, high-performance HTTP server. Nginx is known for its stability, rich feature set, simple configuration, and low resource consumption. This tutorial shows how you can install Nginx on an Ubuntu 13.04 server with PHP5 support (through PHP-FPM) and MySQL support (LEMP = Linux + nginx (pronounced "engine x") + MySQL + PHP) .
3 Comment(s)
Comments
it installs all old versions of softwares. why we should do it?
Nice but your missing the following
sudo vi /etc/php5/fpm/pool.d/www.conf
Find the line, listen = 127.0.0.1:9000, and change the 127.0.0.1:9000 to “/var/run/php5-fpm.sock”
Otherwise step 5 fails.
[...] ;listen = /var/run/php5-fpm.sock listen = 127.0.0.1:9000 [...]
why?