Created
December 2, 2023 14:42
-
-
Save garraflavatra/468450ef223b7abfde219fde81ff655d to your computer and use it in GitHub Desktop.
Nginx gzip configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http { | |
gzip on; | |
gzip_vary on; | |
gzip_proxied any; | |
gzip_comp_level 6; | |
gzip_buffers 16 8k; | |
gzip_http_version 1.1; | |
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/java> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment