Skip to content

Instantly share code, notes, and snippets.

Created November 13, 2014 16:35
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 anonymous/4b3cf30dcc81058ffe1b to your computer and use it in GitHub Desktop.
Save anonymous/4b3cf30dcc81058ffe1b to your computer and use it in GitHub Desktop.
NGINX-Site-Config
Location-parts of the nginx-site-configuration
location / {
proxy_pass http://oddo;
proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
proxy_redirect off;
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_set_header X-Forwarded-Proto https;
}
location ~* /web/static/ {
proxy_cache_valid 200 60m;
proxy_buffering on;
expires 864000;
proxy_pass http://oddo;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment