From 65131260e01f9bb42a0c0868fca73f93b4ead25c Mon Sep 17 00:00:00 2001 From: trivernis Date: Sat, 7 Oct 2023 19:01:29 +0200 Subject: [PATCH] Fix tandoor traefik route --- apps/tandoor/app/route.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/tandoor/app/route.yaml b/apps/tandoor/app/route.yaml index c21d0d2..a82ba72 100644 --- a/apps/tandoor/app/route.yaml +++ b/apps/tandoor/app/route.yaml @@ -7,8 +7,13 @@ spec: entryPoints: - web routes: - - match: Host(`recipes.trivernis.dev`) || Host(`recipes.trivernis.net`) + - match: (Host(`recipes.trivernis.dev`) || Host(`recipes.trivernis.net`)) && (Path(`/media`) || Path(`/static`)) kind: Rule services: - name: recipes-service port: 80 + - match: Host(`recipes.trivernis.dev`) || Host(`recipes.trivernis.net`) + kind: Rule + services: + - name: recipes-service + port: 8080