首页 > 代码库 > Nginx 配置php
Nginx 配置php
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。