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