From 53321a77000f2d7b1d6b6e8826a9412296fe56e0 Mon Sep 17 00:00:00 2001 From: notplants <@notplants> Date: Mon, 25 May 2026 16:52:40 +0000 Subject: [PATCH 1/2] fix: matrix-federation entrypoint on :8448 to match published port MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit compose.matrix.yml publishes container port 8448, but the entrypoint was on :9001 — federation traffic hit no listener. :9001 also collided with the minio-console entrypoint. --- abra.sh | 2 +- traefik.yml.tmpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/abra.sh b/abra.sh index ac93525..9a1fab8 100644 --- a/abra.sh +++ b/abra.sh @@ -1,3 +1,3 @@ -export TRAEFIK_YML_VERSION=v30 +export TRAEFIK_YML_VERSION=v31 export FILE_PROVIDER_YML_VERSION=v12 export ENTRYPOINT_VERSION=v5 diff --git a/traefik.yml.tmpl b/traefik.yml.tmpl index d51f7f8..44a5979 100644 --- a/traefik.yml.tmpl +++ b/traefik.yml.tmpl @@ -96,7 +96,7 @@ entrypoints: {{- end }} {{- if eq (env "MATRIX_FEDERATION_ENABLED") "1" }} matrix-federation: - address: ":9001" + address: ":8448" {{- end }} {{- if eq (env "NEXTCLOUD_TALK_HPB_ENABLED") "1" }} nextcloud-talk-hpb: -- 2.49.0 From 88f1e61da2ae11b29073af7ae1e14e855bda9c20 Mon Sep 17 00:00:00 2001 From: notplants <@notplants> Date: Mon, 25 May 2026 16:52:59 +0000 Subject: [PATCH 2/2] chore: publish 5.1.2+v3.6.15 release --- compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yml b/compose.yml index c06de25..a8a0321 100644 --- a/compose.yml +++ b/compose.yml @@ -55,7 +55,7 @@ services: - "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}" - "traefik.http.routers.${STACK_NAME}.service=api@internal" - "traefik.http.routers.${STACK_NAME}.middlewares=security@file" - - "coop-cloud.${STACK_NAME}.version=5.1.1+v3.6.15" + - "coop-cloud.${STACK_NAME}.version=5.1.2+v3.6.15" - "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT}" - "backupbot.backup=${ENABLE_BACKUPS:-true}" -- 2.49.0