我正在尝试使用NGINX反向代理服务器部署django应用。
我的/etc/nginx/conf.f/app.conf
如下:
server {
listen 80;
listen 443 ssl;
server_name myhost.com;
ssl_certificate /etc/letsencrypt/live/myhost.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/myhost.com/privkey.pem;
location / {
proxy_pass http://127.0.0.1:8000;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
打开myhost.com时,出现浏览器的ERR_TOO_MANY_REDIRECTS
错误。我不知道如何解决它,但是如果将http://127.0.0.1:8000
改写为https://127.0.0.1:8000
,则会出现502 Bad Gateway
错误。
Django正在收听:http://127.0.0.1:8000。
答案 0 :(得分:0)
我认为这与URL中的斜杠有关。
尝试更改行
proxy_pass http://127.0.0.1:8000;
到
proxy_pass http://127.0.0.1:8000/;
这可能会解决问题
答案 1 :(得分:0)
在settings.py
中,设置SECURE_SSL_REDIRECT = False
。