We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5c4a78 commit b900c1dCopy full SHA for b900c1d
charts/showroom-single-pod/templates/proxy/configmap-nginx-config.yaml
@@ -93,7 +93,19 @@ data:
93
proxy_set_header X-NginX-Proxy true;
94
}
95
{{- end }}
96
-
+ location ^~ /runner {
97
+ rewrite ^/runner(/.*)$ $1 break;
98
+ proxy_pass http://localhost:8501/;
99
+ proxy_http_version 1.1;
100
+ proxy_set_header Upgrade $http_upgrade;
101
+ proxy_set_header Connection "upgrade";
102
+ proxy_read_timeout 43200000;
103
+
104
+ proxy_set_header X-Real-IP $remote_addr;
105
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
106
+ proxy_set_header Host $http_host;
107
+ proxy_set_header X-NginX-Proxy true;
108
+ }
109
{{- if eq .Values.ocpconsole.setup "true" }}
110
location /ocp/ {
111
# JM: not working, don't know why
0 commit comments