博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx配置
阅读量:5244 次
发布时间:2019-06-14

本文共 799 字,大约阅读时间需要 2 分钟。

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;
  }
}

转载于:https://www.cnblogs.com/happlyp/p/6009559.html

你可能感兴趣的文章
303. Range Sum Query - Immutable
查看>>
【★】浅谈计算机与随机数
查看>>
C# Dynamic通用反序列化Json类型并遍历属性比较
查看>>
前台freemark获取后台的值
查看>>
Leetcode: Unique Binary Search Trees II
查看>>
C++ FFLIB 之FFDB: 使用 Mysql&Sqlite 实现CRUD
查看>>
Spring-hibernate整合
查看>>
c++ map
查看>>
exit和return的区别
查看>>
Django 相关
查看>>
git init
查看>>
训练记录
查看>>
IList和DataSet性能差别 转自 http://blog.csdn.net/ilovemsdn/article/details/2954335
查看>>
Hive教程(1)
查看>>
第16周总结
查看>>
C#编程时应注意的性能处理
查看>>
比较安全的获取站点更目录
查看>>
苹果开发者账号那些事儿(二)
查看>>
UVA11374 Airport Express
查看>>
P1373 小a和uim之大逃离 四维dp,维护差值
查看>>