如何正确配置Nginx+PHP
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何正确配置Nginx+PHP相关的知识,希望对你有一定的参考价值。
php用php-fpm启动,然后nginxlocation ~ \\.php$
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
这样就可以了 参考技术A location ~ \.php$
root /usr/share/nginx/html;
try_files $uri = 404;
include /etc/nginx/fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_index index.php;
fastcgi_pass unix:/var/run/php5-fpm.sock;
#fastcgi_pass 127.0.0.1:9000;
以上是关于如何正确配置Nginx+PHP的主要内容,如果未能解决你的问题,请参考以下文章