I can access Django server directly despite nginx reverse proxy
I have a Django Rest Framework server running with Gunicorn with this command : gunicorn --bind 0.0.0.0 --forwarded-allow-ips="*" partyapp.wsgi:application --access-logfile - --error-logfile - --log-level debug I have Nginx as a reverse proxy with the following configuration: server { listen 80;…