Allow the jwt service to be running locallay rather than part of the docker-compose. This helps with developing the lk-jwt-service

This commit is contained in:
fkwp
2025-05-22 12:49:37 +02:00
parent aeae964e97
commit b969857583

View File

@@ -43,6 +43,11 @@ server {
# MatrixRTC reverse proxy # MatrixRTC reverse proxy
# - MatrixRTC Authorization Service # - MatrixRTC Authorization Service
# - LiveKit SFU websocket signaling connection # - LiveKit SFU websocket signaling connection
upstream jwt-auth-services {
server auth-server:8080;
server host.docker.internal:8080;
}
server { server {
listen 80; listen 80;
listen [::]:80; listen [::]:80;
@@ -63,7 +68,8 @@ server {
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Proto $scheme;
# JWT Service running at port 8080 # JWT Service running at port 8080
proxy_pass http://auth-server:8080/; proxy_pass http://jwt-auth-services/;
} }
location ^~ /livekit/sfu/ { location ^~ /livekit/sfu/ {