Nginx 配置php
Posted 狗哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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的主要内容,如果未能解决你的问题,请参考以下文章
Nginx——Nginx启动报错Job for nginx.service failed because the control process exited with error code(代码片段