如何正确配置Nginx+PHP

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何正确配置Nginx+PHP相关的知识,希望对你有一定的参考价值。

php用php-fpm启动,然后nginx
location ~ \\.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的主要内容,如果未能解决你的问题,请参考以下文章

LNMP 架构搭建与优化

CentOS 下 LNMP 环境配置

如何正确配置Nginx+PHP

Nginx-10.php-nginx-mysql联动

如何正确配置Nginx + PHP

LNMP构建