-
-
Save RihardNovozhilov/a2db07481039cb5da03201433e381152 to your computer and use it in GitHub Desktop.
Ideal Nginx configuration for JavaScript single-page app
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
server { | |
listen 80; | |
root /usr/share/nginx/html; | |
gzip on; | |
gzip_types text/css application/javascript application/json image/svg+xml; | |
gzip_comp_level 9; | |
etag on; | |
location / { | |
try_files $uri $uri/ /index.html; | |
} | |
location /static/ { | |
add_header Cache-Control max-age=31536000; | |
} | |
location /index.html { | |
add_header Cache-Control no-cache; | |
} | |
location /config.json { | |
add_header Cache-Control no-cache; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment