Browse Source
Merge pull request #58 from colinin/3.0
change the nginx proxy server address
pull/81/head
cKey
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
vueJs/docker/nginx/default.conf
|
|
|
@ -19,15 +19,15 @@ server { |
|
|
|
} |
|
|
|
|
|
|
|
location /connect/ { |
|
|
|
proxy_pass http://10.21.15.28:44385/; |
|
|
|
proxy_pass http://127.0.0.1:44385/; |
|
|
|
} |
|
|
|
|
|
|
|
location /api/ { |
|
|
|
proxy_pass http://10.21.15.28:30000/; |
|
|
|
proxy_pass http://127.0.0.1:30000/; |
|
|
|
} |
|
|
|
|
|
|
|
location /signalr-hubs/ { |
|
|
|
proxy_pass http://10.21.15.28:30000/; |
|
|
|
proxy_pass http://127.0.0.1:30000/; |
|
|
|
proxy_http_version 1.1; |
|
|
|
proxy_set_header Upgrade $http_upgrade; |
|
|
|
proxy_set_header Connection "upgrade"; |
|
|
|
|