我在网络服务器上安装了django,nginx和gunicorn。
Nginx侦听端口80 Gunicorn在8000端口运行django项目
这很好用。如果我去www.mysite.com:8000/myapp/,django应用程序就可以了。但是如果我希望用户访问www.mysite.com/myapp/来查看django应用程序呢?我不认为摆脱Nginx是答案,我希望我错过了一些配置调整,我可以申请使这项工作。
感谢任何建议。
答案 0 :(得分:3)
您可以使用以下配置,以便您可以在端口80上正常访问您的网站:
这是你的nginx配置文件,sudo vim /etc/nginx/sites-available/django
upstream app_server {
server 127.0.0.1:9000 fail_timeout=0;
}
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html;
index index.html index.htm;
client_max_body_size 250M;
server_name _;
keepalive_timeout 15;
# Your Django project's media files - amend as required
location /media {
alias /home/xxx/yourdjangoproject/media;
}
# your Django project's static files - amend as required
location /static {
alias /home/xxx/yourdjangoproject/static;
}
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://app_server;
}
}
并将gunicorn配置为
description "Gunicorn daemon for Django project"
start on (local-filesystems and net-device-up IFACE=eth0)
stop on runlevel [!12345]
# If the process quits unexpectadly trigger a respawn
respawn
setuid yourdjangousernameonlinux
setgid yourdjangousernameonlinux
chdir /home/xxx/yourdjangoproject
exec gunicorn \
--name=yourdjangoproject \
--pythonpath=yourdjangoproject \
--bind=0.0.0.0:9000 \
--config /etc/gunicorn.d/gunicorn.py \
yourdjangoproject.wsgi:application
答案 1 :(得分:1)
不,摆脱nginx肯定不是答案。答案是遵循very nice documentation将nginx配置为gunicorn的反向代理。