From 897ea4bed2911e18285f1310d4902c3fb46962bf Mon Sep 17 00:00:00 2001 From: mikl Date: Mon, 13 Jul 2026 01:12:30 +0300 Subject: [PATCH] heather: jitsi-jvb add network alias 'jvb' (nginx colibri-ws proxy needs it) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit nginx template in jitsi-web hardcodes proxy_pass http://jvb:9090 for /colibri-ws/jvb/* but service is named jitsi-jvb → DNS NXDOMAIN → 502. Official compose names service 'jvb'; arion service key is jitsi-jvb so add network alias 'jvb' to fix bridge channel. --- hosts/heather/arion-compose.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/heather/arion-compose.nix b/hosts/heather/arion-compose.nix index 03183db..e82042d 100644 --- a/hosts/heather/arion-compose.nix +++ b/hosts/heather/arion-compose.nix @@ -229,7 +229,7 @@ ]; service.volumes = [ "jitsi-jvb-config:/config" ]; service.depends_on = [ "jitsi-prosody" ]; - service.networks = [ "meet-jitsi" ]; + service.networks.meet-jitsi.aliases = [ "jvb" ]; service.env_file = [ "/var/lib/jitsi-secrets/jitsi.env" ]; service.environment = { TZ = "Europe/Moscow";