Created
November 3, 2022 23:59
-
-
Save steren/9d44d11256d52927ab063b5d2c039808 to your computer and use it in GitHub Desktop.
nginx.conf with gzip enabled
This file contains 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
server { | |
listen 8080; | |
server_name _; | |
gzip on; | |
location / { | |
proxy_pass http://127.0.0.1:8888; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment