Skip to content

Instantly share code, notes, and snippets.

@rafaelcaricio
Created November 2, 2010 15:51
Show Gist options
  • Save rafaelcaricio/659815 to your computer and use it in GitHub Desktop.
Save rafaelcaricio/659815 to your computer and use it in GitHub Desktop.
Configuração do NGINX
upstream easy_gunicorn {
server 127.0.0.1:9000;
}
server {
listen 80;
server_name localhost 127.0.0.1;
client_max_body_size 10M;
access_log /var/log/nginx/easyproject.access.log;
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
if (!-f $request_filename) {
proxy_pass http://easy_gunicorn;
break;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment