Skip to content

Instantly share code, notes, and snippets.

@jhonoryza
Created August 14, 2021 07:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jhonoryza/61f19430979dc9d50d8d96c2893d8aef to your computer and use it in GitHub Desktop.
Save jhonoryza/61f19430979dc9d50d8d96c2893d8aef 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