Skip to content

Instantly share code, notes, and snippets.

@sanglt
Created April 3, 2019 06:10
Show Gist options
  • Save sanglt/9474d4d233818b0e70c6dc279db6054f to your computer and use it in GitHub Desktop.
Save sanglt/9474d4d233818b0e70c6dc279db6054f to your computer and use it in GitHub Desktop.
upstream redash {
server localhost:5000;
}
server {
listen 80 default;
gzip on;
gzip_types *;
gzip_proxied any;
location / {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto;
proxy_pass http://redash;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment