Skip to content

Instantly share code, notes, and snippets.

@steren
Created November 3, 2022 23:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steren/9d44d11256d52927ab063b5d2c039808 to your computer and use it in GitHub Desktop.
Save steren/9d44d11256d52927ab063b5d2c039808 to your computer and use it in GitHub Desktop.
nginx.conf with gzip enabled
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