-
Gatus keeps crashing every time I try to start it, with OIDC configured.
Here's my Authelia configuration for Gatus: identity_providers:
oidc:
clients:
- client_id: {{ secret "/run/secrets/gatus-oidc-client-id_authelia" | mindent 10 "|" | msquote }}
client_name: 'Gatus'
client_secret: {{ secret "/run/secrets/gatus-oidc-client-secret_authelia" | mindent 10 "|" | msquote }}
public: false
authorization_policy: 'one_factor'
redirect_uris:
- 'https://status.haddock.cc/authorization-code/callback'
scopes:
- 'openid'
Here's my Gatus OIDC configuration: security:
oidc:
client-id: $OIDC_CLIENT_ID
client-secret: $OIDC_CLIENT_SECRET
issuer-url: https://auth.haddock.cc/.well-known/openid-configuration
redirect-url: https://status.haddock.cc/authorization-code/callback
scopes:
- openid Gatus version: 5.11.0 |
Beta Was this translation helpful? Give feedback.
Answered by
poperigby
Jun 14, 2024
Replies: 1 comment
-
Figured it out. You have to use just https://auth.haddock.cc without the .well-known/openid-configuration. Seems that gets added automatically. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
poperigby
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Figured it out. You have to use just https://auth.haddock.cc without the .well-known/openid-configuration. Seems that gets added automatically.