Skip to content

Instantly share code, notes, and snippets.

@mhemrg
Created November 10, 2020 08:06
Show Gist options
  • Save mhemrg/a61c21141bfa0bf0adf92e4c90771b63 to your computer and use it in GitHub Desktop.
Save mhemrg/a61c21141bfa0bf0adf92e4c90771b63 to your computer and use it in GitHub Desktop.
Enable GZip in Static Platform
gzip on;
gzip_disable "msie6";
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_types text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript image/svg+xml;
location / {
index index.html index.htm;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment