website/docs: clear up outpost uuids

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-07-23 16:07:47 +02:00
parent 6a8be0dc71
commit d16c24fd53
1 changed files with 8 additions and 4 deletions

View File

@ -32,6 +32,10 @@ is redirect to the outpost.
For domain level, you'd use the same domain as authentik. For domain level, you'd use the same domain as authentik.
:::info
*example-outpost* is used as a placeholder for the outpost name.
:::
## Nginx ## Nginx
import Tabs from '@theme/Tabs'; import Tabs from '@theme/Tabs';
@ -103,7 +107,7 @@ spec:
http: http:
paths: paths:
- backend: - backend:
serviceName: authentik-outpost-*uuid of the service generated by authentik* serviceName: authentik-outpost-example-outpost
servicePort: 4180 servicePort: 4180
path: /akprox path: /akprox
``` ```
@ -140,7 +144,7 @@ http:
middlewares: middlewares:
authentik: authentik:
forwardAuth: forwardAuth:
address: http://authentik-outpost-*uuid of the service generated by authentik*:4180/akprox/auth?traefik address: http://authentik-outpost-example-outpost:4180/akprox/auth?traefik
trustForwardHeader: true trustForwardHeader: true
authResponseHeaders: authResponseHeaders:
- Set-Cookie - Set-Cookie
@ -237,7 +241,7 @@ metadata:
name: authentik name: authentik
spec: spec:
forwardAuth: forwardAuth:
address: http://authentik-outpost-*uuid of the service generated by authentik*:4180/akprox/auth?traefik address: http://authentik-outpost-example-outpost:4180/akprox/auth?traefik
trustForwardHeader: true trustForwardHeader: true
authResponseHeaders: authResponseHeaders:
- Set-Cookie - Set-Cookie
@ -264,7 +268,7 @@ spec:
priority: 15 priority: 15
services: services:
- kind: Service - kind: Service
name: authentik-outpost-*uuid of the service generated by authentik* name: authentik-outpost-example-outpost
port: 4180 port: 4180
``` ```
</TabItem> </TabItem>