Created
December 27, 2019 12:27
-
-
Save grmkris/8193191f1a54276b63b0964f0c872ea0 to your computer and use it in GitHub Desktop.
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
| 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