Nginx配置
Posted 为生活而努力
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx配置相关的知识,希望对你有一定的参考价值。
server {
listen 80;
server_name zg.dbschenker-atoms.com;
access_log /data/web_log/nginx_log/zg_db_access.log moss;
error_log /data/web_log/nginx_log/zg_db_error.log;
location / {
root /data/web_data/web/app/zg_cat/www/;
index index.php index.html index.htm;
}
location ~ \.php$ {
root /data/web_data/web/app/zg_cat/www/;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.html;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
include fastcgi_params;
}
location /php-fpm_status {
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
include fastcgi_params;
}
}
以上是关于Nginx配置的主要内容,如果未能解决你的问题,请参考以下文章