Ubuntu 14.04 LTS下安装 LNMP环境

http://ubuntuhandbook.org/index.php/2014/04/install-nginx-with-php5-mysql-lemp-in-ubuntu-14-04-server/

        location ~ \.php$ {
                try_files $uri =404;
                fastcgi_pass unix:/var/run/php5-fpm.sock;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include fastcgi_params;
                
        }

http://blog.csdn.net/black_ox/article/details/38232315


https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-on-ubuntu-12-04


configure php5-mycryt with php5-fpm(ubuntu 14.04)

你可能感兴趣的:(Ubuntu 14.04 LTS下安装 LNMP环境)