您的位置:首页 > 运维架构 > Nginx

nginx配置php

2016-11-30 22:17 218 查看
进入nginx.conf配置文件,加入如下代码

location ~ \.php$ {     #碰到php文件时候
fastcgi_pass   127.0.0.1:9000;  #转发到9000端口
fastcgi_index  index.php;
fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
include        fastcgi_params;

}

location / {
root   html;    #源代码目录
index index.php index.html index.htm;
}


重启nginx命令:

nginx -s reload   #优雅重启


重启php命令

pkill -9 php-fpm

./php-fpm -R
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: