From 2e8979d4d8eb9ab88503d9ce463378aeeb8d7a96 Mon Sep 17 00:00:00 2001 From: Leopere Date: Wed, 4 Mar 2026 20:26:10 -0500 Subject: [PATCH] Fix Gitea assets 404: give customer Traefik router priority=2 so /i/username requests hit Gitea not ss-atlas Made-with: Cursor --- docker/ss-atlas/templates/stack-template.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/ss-atlas/templates/stack-template.yml b/docker/ss-atlas/templates/stack-template.yml index 4b8cb1f..348ecc1 100644 --- a/docker/ss-atlas/templates/stack-template.yml +++ b/docker/ss-atlas/templates/stack-template.yml @@ -49,6 +49,7 @@ services: traefik.docker.network: "atlas_{{.TraefikNetwork}}" traefik.http.routers.customer-{{.ID}}-web.rule: "Host(`{{.Domain}}`) && PathPrefix(`/i/{{.Subdomain}}`)" traefik.http.routers.customer-{{.ID}}-web.entrypoints: "websecure" + traefik.http.routers.customer-{{.ID}}-web.priority: "2" traefik.http.routers.customer-{{.ID}}-web.tls: "true" traefik.http.routers.customer-{{.ID}}-web.middlewares: "strip-customer-{{.ID}}@swarm,authelia-auth@swarm" traefik.http.middlewares.strip-customer-{{.ID}}.stripprefix.prefixes: "/i/{{.Subdomain}}"