Nginx 配置php
阿新 • • 發佈:2017-06-28
pass 代碼 pre ade avi game oot color 訪問
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 11rewrite_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