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 2511f59 commit 84b5297Copy full SHA for 84b5297
.devcontainer/images/nginx/conf/nginx.conf
@@ -42,6 +42,10 @@ http {
42
server host.docker.internal:3000;
43
}
44
45
+ upstream cloud_controller_metrics {
46
+ server host.docker.internal:9395;
47
+ }
48
+
49
map $upload_tmp_path $upload_tmp_path_modified {
50
default "n/a";
51
"~^/tmp/(?<path>.*)$" $path;
.devcontainer/images/nginx/conf/nginx_external_endpoints.conf
@@ -2,8 +2,8 @@ server {
2
listen 80;
3
4
# Forbid access to internal endpoints
5
- location /internal/v4/ {
6
- return 403 'Forbidden';
+ location /internal/v4/metrics {
+ proxy_pass http://cloud_controller_metrics;
7
8
9
# proxy and log all CC traffic
0 commit comments