mirror of
https://github.com/lukaszraczylo/traefikoidc.git
synced 2026-06-05 22:44:17 +00:00
16 lines
547 B
YAML
16 lines
547 B
YAML
# Minimal oidcgate config. See docs/OIDCGATE.md for full reference.
|
|
listen: ":8080"
|
|
authPath: "/oauth2/auth"
|
|
startPath: "/oauth2/start"
|
|
|
|
providerURL: "https://accounts.google.com"
|
|
clientID: "REPLACE_ME.apps.googleusercontent.com"
|
|
clientSecret: "REPLACE_ME" # OR set OIDCGATE_CLIENT_SECRET
|
|
sessionEncryptionKey: "REPLACE_WITH_64_HEX_BYTES" # OR OIDCGATE_SESSION_ENCRYPTION_KEY
|
|
callbackURL: "/oauth2/callback"
|
|
logoutURL: "/oauth2/logout"
|
|
postLogoutRedirectURI: "/"
|
|
|
|
# allowedUserDomains: [company.com]
|
|
# excludedURLs: [/health, /metrics]
|