Created
January 28, 2018 18:42
-
-
Save dustinrue/b803838d1928a85dfa6c867b7ffef782 to your computer and use it in GitHub Desktop.
Revisions
-
dustinrue created this gist
Jan 28, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ upstream ups { server 192.168.86.251; } server { location /ups { proxy_pass http://ups/; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_read_timeout 86400; } }