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

Nginx PHP支持

时间:2017-11-17 16:12:35      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:document   location   apache   access   server   ram   param   进程   name   

Nginx 支持 PHP

server {
server_name www.www1.com www1.com;
location / {
index index.php  index.html;
root  /web/www/www1.com
}
location ~ \.php$ {
root           html;
fastcgi_pass   127.0.0.1:9000;
fastcgi_index  index.php;
fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
     //    fastcgi_param 放置PHP动态程序的主目录,也是scripts$fastcgi_script_name 前面指定的目录;
include        fastcgi_params;
    //    fastcgi 进程的参数配置文件;
  }
# deny access to .htaccess files,
if Apaches document root # concurs with nginxs one # #location ~ /\.ht { # deny all; #} }

 

Nginx PHP支持

标签:document   location   apache   access   server   ram   param   进程   name   

原文地址:http://www.cnblogs.com/sharesdk/p/7851707.html

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