Skip to content

Instantly share code, notes, and snippets.

@Antoinebr
Last active February 16, 2017 10:13
Show Gist options
  • Save Antoinebr/2dede0591ad4be17bdcb9230ffcd4904 to your computer and use it in GitHub Desktop.
Save Antoinebr/2dede0591ad4be17bdcb9230ffcd4904 to your computer and use it in GitHub Desktop.
browser-caching / Gzip
#
# Gzip Config
#
gzip on;
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
#
# Browser Caching config
#
location ~* \.(jpg|jpeg|png|gif|ico|css|js)$ {
expires 365d;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment