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 }
时间: 2024-11-12 23:43:23