From 9cbf19ed1bc3e7365c8273c9587465de26bde5a3 Mon Sep 17 00:00:00 2001 From: poduck Date: Wed, 3 Dec 2025 17:32:53 -0500 Subject: [PATCH] fix(traefik): Simplify HTTP HostRegexp pattern MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- smoothschedule/compose/production/traefik/traefik.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smoothschedule/compose/production/traefik/traefik.yml b/smoothschedule/compose/production/traefik/traefik.yml index 7af834b..2f901b1 100644 --- a/smoothschedule/compose/production/traefik/traefik.yml +++ b/smoothschedule/compose/production/traefik/traefik.yml @@ -138,7 +138,7 @@ http: # Routes to nginx which serves the frontend SPA and proxies /api/ to Django # Low priority (1) ensures specific domain routers match first subdomain-router: - rule: 'HostRegexp(`^[a-z0-9-]+\\.smoothschedule\\.com$`)' + rule: 'HostRegexp(`.+\\.smoothschedule\\.com`)' priority: 1 entryPoints: - web-secure