[misc] Update infra scripts with ws proxy for browser client (#4566)

* Update infra scripts with ws proxy for browser client

* add ws proxy to nginx tmpl
This commit is contained in:
Maycon Santos
2025-10-01 19:52:54 -03:00
committed by GitHub
parent 4d7e59f199
commit b85045e723
3 changed files with 16 additions and 1 deletions

View File

@@ -52,6 +52,10 @@ server {
location / {
proxy_pass http://dashboard;
}
# Proxy Signal wsproxy endpoint
location /ws-proxy/signal {
proxy_pass http://signal;
}
# Proxy Signal
location /signalexchange.SignalExchange/ {
grpc_pass grpc://signal;
@@ -64,6 +68,10 @@ server {
location /api {
proxy_pass http://management;
}
# Proxy Management wsproxy endpoint
location /ws-proxy/management {
proxy_pass http://management;
}
# Proxy Management grpc endpoint
location /management.ManagementService/ {
grpc_pass grpc://management;