Merge branch 'fkwp/docker_compose/resolve_conflicting_ports' into fkwp/docker_compose_allow_local_lk_service

This commit is contained in:
fkwp
2025-05-27 16:40:28 +02:00
22 changed files with 443 additions and 130 deletions

View File

@@ -44,8 +44,8 @@ server {
# - MatrixRTC Authorization Service
# - LiveKit SFU websocket signaling connection
upstream jwt-auth-services {
server auth-server:8080;
server host.docker.internal:8080;
server auth-server:6080;
server host.docker.internal:6080;
}
server {
@@ -67,7 +67,7 @@ server {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# JWT Service running at port 8080
# JWT Service running at port 6080
proxy_pass http://jwt-auth-services/;
}