django+uwsgi linux 下环境
直接上配置
[uwsgi] set fileencodings=utf-8,gb2312,gb18030,gbk,ucs-bom,cp936,latin1 #project dic chdir=/usr/local/Yshoog/ #application module=Yshoog.wsgi:application #sock dic socket = /usr/local/script/uwsgi.sock #work num workers = 5 pidfile=/usr/local/script/uwsgi.pid #ip http=0.0.0.0:8000 #static static-map=/static=/usr/local/Yshoog/static #group uid=root gid=root #main queue master=true #remove unix socket vacuum=true #xuliehua thunder-locak=true
harakiri=30 #buffer post-buffering=4096 #log daemonize=/usr/local/script/uwsgi.log
Nginx 贴一部分
#Mobile Server
server {
listen 80;
server_name m.yshoog.com;
location /{
root m;
index index.html index.htm;
}
}
#PC Admin
server {
listen 80;
server_name admin.yshoog.com;
location /static/ {
root usr/local/Yshoog/static;
}
location / {
proxy_pass http://127.0.0.1:8000;
proxy_pass_header Server;
proxy_set_header Host $host:83;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Scheme $scheme;
}
}
django 死活访问不到 static 文件 nginx 怎么匹配 url 都不行 求大神解解惑啊 一下午 快崩了