Skip to content

Instantly share code, notes, and snippets.

@RyanDsilva
Last active July 13, 2020 16:58
Show Gist options
  • Save RyanDsilva/0dce9c67ccc95b9c0107720c00df7a06 to your computer and use it in GitHub Desktop.
Save RyanDsilva/0dce9c67ccc95b9c0107720c00df7a06 to your computer and use it in GitHub Desktop.
NGINX gzip compression
server {
...
...
gzip on;
gzip_types text/plain application/xml application/json;
gzip_comp_level 9;
gzip_min_length 1000;
...
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment