nginx代理php设置
Posted kiancyc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx代理php设置相关的知识,希望对你有一定的参考价值。
server {
listen 80;
#listen [::]:80 default_server;
# server_name www.xxx.com;
root /opt/www.xxx.com;
index index.php index.html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
try_files $uri $uri/ /index.php?q=$uri&$args;
}
location ~ .php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
以上是关于nginx代理php设置的主要内容,如果未能解决你的问题,请参考以下文章
动态PHP电商网站伪静态的Nginx反向代理Cache缓存终极设置