Nginx - gunicorn - django allauth redirect to 127.0.0.1 issue, how can I solve this?
Я хочу развернуть мое приложение django с помощью nginx-gunicorn.
поэтому я установил nginx и gunicorn conf следующим образом.
/etc/nginx/conf.d/default.conf included by /etc/nginx/nginx.conf
server {
listen 80;
server_name my.domain.com;
charset utf-8;
location /static/ {
root /home/flood/dj-eruces-ango;
}
location / {
proxy_pass http://127.0.0.1:8000;
#include proxy_params;
#proxy_pass http://unix:/etc/systemd/system/gunicorn.socket;
}
}
/etc/systemd/system/gunicorn.service
[Unit]
Description=gunicorn daemon
After=network.target
[Service]
User=flood
Group=www-data
WorkingDirectory=/home/flood/dj-eruces-ango/
ExecStart=/home/flood/dj-eruces-ango/secure/bin/gunicorn \
--workers 2 \
--bind 0.0.0.0:8000 \
config.wsgi:application
[Install]
WantedBy=multi-user.target
и я установил свой google social-auth api на 'my.domain.com' и 'my.domain.com/auth/google/login/callback/'
но когда я пытаюсь использовать социальный аутентификатор, возникает следующая ошибка.
400 ошибка: redirect_uri_mismatch http://127.0.0.1:8000/auth/google/login/callback/
Я хочу решить это. показать проблему localhost (не my.domain.com) и проблему redirect_uri_mismatch.
Как я могу попробовать?