We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4589614 commit 6ee7cf1Copy full SHA for 6ee7cf1
README.md
@@ -61,8 +61,15 @@ upstream cmdb{
61
server 127.0.0.1:9002;
62
}
63
64
-location /static {
65
- alias /var/www/CMDB/static;
+location /v1/cmdb/ws/ {
+ #proxy_set_header Host $http_host;
66
+ proxy_redirect off;
67
+ proxy_set_header X-Real-IP $remote_addr;
68
+ proxy_set_header X-Scheme $scheme;
69
+ proxy_pass http://cmdb;
70
+ proxy_http_version 1.1;
71
+ proxy_set_header Upgrade $http_upgrade;
72
+ proxy_set_header Connection "upgrade";
73
74
75
location /api/cmdb/ {
0 commit comments