nginx配置php

Posted 人间最美二月天

tags:

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

进入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

 

以上是关于nginx配置php的主要内容,如果未能解决你的问题,请参考以下文章

Nginx——Nginx启动报错Job for nginx.service failed because the control process exited with error code(代码片段

Nginx配置文件详细介绍

nginx配置php

如何正确配置Nginx + PHP

如何正确配置 Nginx + PHP

如何正确配置Nginx + PHP