码迷,mamicode.com
首页 > Web开发 > 详细

nginx配置php

时间:2016-12-01 03:21:05      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:pre   conf   cgi   bsp   fas   style   php文件   ast   roo   

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

标签:pre   conf   cgi   bsp   fas   style   php文件   ast   roo   

原文地址:http://www.cnblogs.com/zzg521/p/6119967.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!