Skip to content

Instantly share code, notes, and snippets.

@PraneethKarnena
Last active September 3, 2021 15:54
Show Gist options
  • Save PraneethKarnena/c8a63f4ce231707d7eca1ee4be0b7e46 to your computer and use it in GitHub Desktop.
Save PraneethKarnena/c8a63f4ce231707d7eca1ee4be0b7e46 to your computer and use it in GitHub Desktop.
Nginx configuration for proxying requests to Gunicorn
server {
listen 80;
server_name example.org;
access_log /var/log/nginx/example.access.log;
error_log /var/log/nginx/example.error.log;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $host;
proxy_redirect off;
proxy_pass http://127.0.0.1:8000;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment