Forked from learncodeacademy/gist:ebba574fc3f438c851ae
Created
August 3, 2017 14:21
-
-
Save aameralduais/8e12ded1e9c3cb7451c97ca36458908d to your computer and use it in GitHub Desktop.
Nginx Node Frontend / Load Balancer / Static Assets Caching
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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