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 9143c84 commit b9523daCopy full SHA for b9523da
nginx/nginx.conf
@@ -41,6 +41,20 @@ http {
41
proxy_set_header Connection "upgrade";
42
43
proxy_pass http://node-red-test:1880;
44
+ }
45
+
46
+ # /node-red-test will point to the appmetrics dashboard for node-red-test
47
+ # see also https://github.com/RuntimeTools/appmetrics-dash
48
+ location /appmetrics-dash {
49
+ proxy_set_header Host $http_host;
50
+ proxy_set_header X-Real-IP $remote_addr;
51
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
52
+ proxy_set_header X-Forwarded-Proto $scheme;
53
+ proxy_http_version 1.1;
54
+ proxy_set_header Upgrade $http_upgrade;
55
+ proxy_set_header Connection "upgrade";
56
57
+ proxy_pass http://node-red-test:3001/appmetrics-dash;
58
}
59
60
0 commit comments