website/docs: fix nginx ingress proxy example (#8245)

This commit is contained in:
Eliott Bouhana
2024-01-22 09:13:58 +01:00
committed by GitHub
parent 0467df190e
commit 2bc865b024

View File

@ -9,15 +9,16 @@ spec:
rules:
- host: app.company
http:
paths: /outpost.goauthentik.io
pathType: Prefix
backend:
# Or, to use an external Outpost, create an ExternalName service and reference that here.
# See https://kubernetes.io/docs/concepts/services-networking/service/#externalname
service:
name: ak-outpost-example-outpost
port:
number: 9000
paths:
- path: /outpost.goauthentik.io
pathType: Prefix
backend:
# Or, to use an external Outpost, create an ExternalName service and reference that here.
# See https://kubernetes.io/docs/concepts/services-networking/service/#externalname
service:
name: ak-outpost-example-outpost
port:
number: 9000
```
This ingress handles authentication requests, and the sign-in flow.