Created
April 2, 2019 22:17
-
-
Save mixcas/916d6b32cae668fe37b491ed7fcbb7ed to your computer and use it in GitHub Desktop.
Revisions
-
mixcas created this gist
Apr 2, 2019 .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,19 @@ server { server_name local.cms.ondamx.art; location / { proxy_pass http://local.cms.ondamx.art:3000; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; } } server { server_name local.ondamx.art; location / { proxy_pass http://local.ondamx.art:3000; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; } }