nginx能同时代理uwsgi+django和supervisor+tornado麽?
我的阿里云服务器上本来搭了一个uwsgi+django的环境,用nginx代理,但是现在需要再搭一个tornado,用supervisor监控,在nginx配置里分配了一个url,django为根url,现在情况是tornado的url都是404 not found
贴nginx的conf:
upstream bus-server {
server 127.0.0.1:8001;
server 127.0.0.1:8002;
server 127.0.0.1:8003;
server 127.0.0.1:8004;
}
server {
listen 80 default_server;
# listen [::]:80 default_server;
server_name _;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location /bus {
proxy_pass http://bus-server;
proxy_pass_header Server;
proxy_set_header Host $http_host;
proxy_redirect false;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Scheme $scheme;
}
location /static {
alias /root/aqi/static;
}
location / {
include uwsgi_params;
uwsgi_pass 127.0.0.1:9090;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
求助大神帮忙解决一下!!!感激不尽!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不能这样设置,这样 tornado 根本接收不到转发过来的请求,你应该把他们当做两个服务部署,通过域名区分,你可以参考我的这篇文章:如何使用 nginx 在一台服务器部署多个网站