Skip to content

Instantly share code, notes, and snippets.

@maxidev
Forked from learncodeacademy/gist:ebba574fc3f438c851ae
Last active August 29, 2015 14:13
Show Gist options
  • Save maxidev/5a4095926b73febd26b7 to your computer and use it in GitHub Desktop.
Save maxidev/5a4095926b73febd26b7 to your computer and use it in GitHub Desktop.
upstream project {
server 22.22.22.2:3000;
server 22.22.22.3:3000;
server 22.22.22.5:3000;
}
server {
listen 80;
location / {
proxy_pass http://project;
}
location ~* \.(css|js|gif|jpe?g|png)$ {
expires 168h;
}
location /api {
expires 10m;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment