Skip to content

Instantly share code, notes, and snippets.

@johngrimes
Created February 14, 2018 22:23
Show Gist options
  • Star 43 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save johngrimes/3a833e23a7db998594c38871e7d3c38e to your computer and use it in GitHub Desktop.
Save johngrimes/3a833e23a7db998594c38871e7d3c38e to your computer and use it in GitHub Desktop.
Ideal Nginx configuration for JavaScript single-page app
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;
}
}
@dannyrb
Copy link

dannyrb commented May 4, 2019

Thanks for sharing this ^_^

@lgy87
Copy link

lgy87 commented May 16, 2019

Thanks a lot.

@Showvhick
Copy link

Useful. Thanks

@JoseLion
Copy link

Awesome! Thanks for sharing this! 🙂 🚀

@carlosarciniegasm
Copy link

carlosarciniegasm commented Apr 23, 2021

here's the ideal one for https, just change your paths

server {
listen [::]:443 ssl ipv6only=on;
listen 443 ssl;
ssl_certificate /etc/ssl/certs/cert.crt;
ssl_certificate_key /etc/ssl/certs/cert.key;

root /var/www/example.com/public;
index index.html index.htm;

server_name example.com www.example.com;

if ($host = www.example.com) {
return 301 https://example.com$request_uri;
}
location / {
root /var/www/example.com/public/;
try_files $uri $uri/ /index.html =404;
}
}
server {
listen 80;
listen [::]:80;

if ($host = example.com) {
return 301 https://$host$request_uri;
}
if ($host = www.example.com) {
return 301 https://example.com$request_uri;
}
return 404;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment