From 7618c2e45f14715ba35b5f612be03ba362481d61 Mon Sep 17 00:00:00 2001 From: support-tt <61587422+support-tt@users.noreply.github.com> Date: Fri, 10 Mar 2023 20:45:41 +0100 Subject: [PATCH] website/docs: improve traefik standalone docs (#4493) * Create _traefik_standalone_single_application.md Example for Authentik Single Application Proxy with Service example because this was unclear for many users and if you dont create a middleware for every application you get the error "no app for hostname". Signed-off-by: support-tt <61587422+support-tt@users.noreply.github.com> * Update _traefik_standalone_single_application.md Signed-off-by: support-tt <61587422+support-tt@users.noreply.github.com> * rename to old file Signed-off-by: Jens Langhammer --------- Signed-off-by: support-tt <61587422+support-tt@users.noreply.github.com> Signed-off-by: Jens Langhammer Co-authored-by: Jens Langhammer --- website/docs/providers/proxy/_traefik_standalone.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/website/docs/providers/proxy/_traefik_standalone.md b/website/docs/providers/proxy/_traefik_standalone.md index 16579fcde..d066cf033 100644 --- a/website/docs/providers/proxy/_traefik_standalone.md +++ b/website/docs/providers/proxy/_traefik_standalone.md @@ -23,9 +23,18 @@ http: middlewares: - name: authentik priority: 10 - services: # Unchanged + services: app default-router-auth: match: "Host(`app.company`) && PathPrefix(`/outpost.goauthentik.io/`)" priority: 15 - services: http://outpost.company:9000/outpost.goauthentik.io + services: authentik + services: + app: + loadBalancer: + servers: + - url: http://ipp.internal + authentik: + loadBalancer: + servers: + - url: http://outpost.company:9000/outpost.goauthentik.io ```