1 Star 0 Fork 16

步洛格/wechat-spider

forked from tonywang16/wechat-spider 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
nginx.conf 865 Bytes
一键复制 编辑 原始数据 按行查看 历史
yijingping 提交于 2016-07-27 14:59 . fix 使用uwsgi部署
upstream wechatspider_0fenbei_uwsgi_backend {
server 127.0.0.1:49161;
}
server {
listen 80;
server_name wechatspider.0fenbei.com;
location ^~ /.git {
deny all;
}
location ^~ /static {
root /var/www/0fenbei/wechat-spider;
index index.html;
expires 1M;
access_log off;
add_header Cache-Control "public";
}
location / {
proxy_next_upstream error timeout http_500 http_503;
proxy_connect_timeout 4000ms;
proxy_read_timeout 30s;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Rewrite-URL $request_uri;
client_max_body_size 10m;
uwsgi_pass wechatspider_0fenbei_uwsgi_backend;
include uwsgi_params;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/blogsaving/wechat-spider.git
[email protected]:blogsaving/wechat-spider.git
blogsaving
wechat-spider
wechat-spider
master

搜索帮助