Skip to content

Instantly share code, notes, and snippets.

@grmkris
Created December 27, 2019 12:27
Show Gist options
  • Select an option

  • Save grmkris/8193191f1a54276b63b0964f0c872ea0 to your computer and use it in GitHub Desktop.

Select an option

Save grmkris/8193191f1a54276b63b0964f0c872ea0 to your computer and use it in GitHub Desktop.
server {
listen 80;
server_name 4t.burns.lab;
location / {
proxy_read_timeout 36000s;
proxy_http_version 1.1;
proxy_buffering off;
client_max_body_size 0;
proxy_redirect off;
proxy_set_header Connection "";
proxy_set_header Host $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-Host $host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_hide_header X-Powered-By;
proxy_pass_header Authorization;
proxy_pass http://172.16.44.102:5000;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment