Skip to content

Instantly share code, notes, and snippets.

@evemilano
Created December 30, 2016 23:01
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 evemilano/996928241d445d417fec76ca75eb5cca to your computer and use it in GitHub Desktop.
Save evemilano/996928241d445d417fec76ca75eb5cca to your computer and use it in GitHub Desktop.
Abilitare il Browser Caching su NGINX
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location ~* \.(jpg|jpeg|png|gif|ico|css|js)$ {
expires 365d;
}
location ~* \.(pdf)$ {
expires 30d;
}
}
@evemilano
Copy link
Author

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