首页 > Web开发 > 详细

Nginx 配置php

时间:2017-06-28 15:03:28      阅读:238      评论:0      收藏:0      [点我收藏+]
 1 server {
 2         listen              80;
 3         server_name         default; # 可以绑定域名
 4         index               index.html index.php;
 5 
 6         root /www/html;        # 代码访问路径
 7 
 8         # log 
 9         access_log          /var/log/nginx/game.access.log main buffer=32k;
10         
11         rewrite_log on;
12         more_set_headers    Server: $server_name;
13         more_set_headers    -s 400 403 404 405 413 414 500 502 503 504  Server: $hostname;
14 
15         location ~ \.php$ {
16                 fastcgi_pass    127.0.0.1:9000;
17                 fastcgi_index   index.php;
18                 fastcgi_param   SCRIPT_FILENAME  $document_root/$fastcgi_script_name;
19                 include         fastcgi_params;
20         }
21 
22         location = /favicon.ico {
23                 log_not_found off;
24                 access_log off;
25         }
26 }

 

Nginx 配置php

原文:http://www.cnblogs.com/gouge/p/7089687.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!