fix(nginx): socketio endpoint directly from kube service

nginx upstream block has some issue with forwarding the socketio
connection

Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
This commit is contained in:
rjshrjndrn 2022-03-31 18:32:27 +02:00
parent 2c77dbbe42
commit 9591d78bb0

View file

@ -82,7 +82,7 @@ data:
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $origin_forwarded_ip;
proxy_set_header X-Real-IP $origin_forwarded_ip;
proxy_pass http://utilities-pool;
proxy_pass http://utilities-openreplay.app.svc.cluster.local:9001;
}
location /assets/ {
rewrite ^/assets/(.*) /sessions-assets/$1 break;