Skip to content

Instantly share code, notes, and snippets.

@flaudisio
Last active August 29, 2015 13:57
Show Gist options
  • Save flaudisio/9643845 to your computer and use it in GitHub Desktop.
Save flaudisio/9643845 to your computer and use it in GitHub Desktop.
#
# Exemplo nginx + gnunicorn + Django
#
server {
listen 80;
server_name exampleapp.org;
root /srv/example_app;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:8000;
}
location /media {
alias /srv/example_app/media;
expires max;
}
location /static {
alias /srv/example_app/static;
expires max;
}
error_log /var/log/nginx/example_app.error.log warn;
access_log /var/log/nginx/example_app.access.log main;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment