码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx配置

时间:2016-10-28 23:15:59      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:cgi   cat   ati   rip   size   list   status   data   htm   

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配置

标签:cgi   cat   ati   rip   size   list   status   data   htm   

原文地址:http://www.cnblogs.com/happlyp/p/6009559.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!