fix: priority for homepage's router

This commit is contained in:
2026-06-16 00:24:58 +02:00
parent 4ca3ccdad3
commit 3d03ab1ea4
2 changed files with 5 additions and 0 deletions
+3
View File
@@ -19,14 +19,17 @@ services:
# Prod Router
- "traefik.http.routers.forust-homepage.rule=Host(`forust.xyz`) || Host(`www.forust.xyz`)"
- "traefik.http.routers.forust-homepage.entrypoints=websecure"
- "traefik.http.routers.forust-homepage.priority=10"
- "traefik.http.routers.forust-homepage.tls.certresolver=letsencrypt"
# Local Router
- "traefik.http.routers.forust-homepage-local.rule=Host(`landing.workstation.internal`)"
- "traefik.http.routers.forust-homepage-local.entrypoints=websecure"
- "traefik.http.routers.forust-homepage-local.priority=10"
- "traefik.http.routers.forust-homepage-local.tls=true"
# Dev Router
- "traefik.http.routers.forust-homepage-dev.rule=Host(`landing.gigaforust.internal`)"
- "traefik.http.routers.forust-homepage-dev.entrypoints=websecure"
- "traefik.http.routers.forust-homepage-dev.priority=10"
- "traefik.http.routers.forust-homepage-dev.tls=true"
xdfnx:
build:
+2
View File
@@ -9,6 +9,7 @@ spec:
routes:
- match: Host(`forust.xyz`) || Host(`www.forust.xyz`)
kind: Rule
priority: 10
services:
- name: forust-homepage-service
port: 80
@@ -26,6 +27,7 @@ spec:
routes:
- match: HostRegexp(`^landing\.(workstation|gigaforust)\.internal$`)
kind: Rule
priority: 10
services:
- name: forust-homepage-service
port: 80