Skip to content

Instantly share code, notes, and snippets.

@wingrime
Created December 28, 2018 11:45
Show Gist options
  • Save wingrime/1ced83ff33b3d809369a5dc7f29a80c4 to your computer and use it in GitHub Desktop.
Save wingrime/1ced83ff33b3d809369a5dc7f29a80c4 to your computer and use it in GitHub Desktop.
upstream django_app {
server 127.0.0.1:8000;
}
server {
listen 80;
server_name demo.gatos.io;
access_log /var/log/nginx/app.log;
error_log /var/log/nginx/app.error.log;
location /static {
autoindex on;
alias /home/platzi/platzi/staticfiles/;
}
location /media {
autoindex on;
alias /home/platzi/platzi/media/;
}
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://django_app;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment