Temporarily disable Gitea OAuth client to fix Authelia startup - Comment out Gitea OIDC client and remove CLIENT_SECRET_GITEA from stack.production.yml
ci/woodpecker/push/woodpecker Pipeline was successful
Details
ci/woodpecker/push/woodpecker Pipeline was successful
Details
This commit is contained in:
parent
faecff6de3
commit
5ff5cb783a
|
@ -59,17 +59,18 @@ identity_providers:
|
|||
- https://portainer.{{ env "TRAEFIK_DOMAIN" }}/
|
||||
userinfo_signed_response_alg: none
|
||||
|
||||
- client_id: gitea
|
||||
client_name: Gitea
|
||||
client_secret: {{ secret "/run/secrets/CLIENT_SECRET_GITEA" }}
|
||||
public: false
|
||||
authorization_policy: one_factor
|
||||
consent_mode: implicit
|
||||
scopes:
|
||||
- openid
|
||||
- email
|
||||
- profile
|
||||
- groups
|
||||
redirect_uris:
|
||||
- https://git.{{ env "TRAEFIK_DOMAIN" }}/user/oauth2/authelia/callback
|
||||
userinfo_signed_response_alg: none
|
||||
# TEMPORARILY DISABLED - Gitea OAuth client (missing CLIENT_SECRET_GITEA)
|
||||
# - client_id: gitea
|
||||
# client_name: Gitea
|
||||
# client_secret: {{ secret "/run/secrets/CLIENT_SECRET_GITEA" }}
|
||||
# public: false
|
||||
# authorization_policy: one_factor
|
||||
# consent_mode: implicit
|
||||
# scopes:
|
||||
# - openid
|
||||
# - email
|
||||
# - profile
|
||||
# - groups
|
||||
# redirect_uris:
|
||||
# - https://git.{{ env "TRAEFIK_DOMAIN" }}/user/oauth2/authelia/callback
|
||||
# userinfo_signed_response_alg: none
|
|
@ -26,6 +26,11 @@ secrets:
|
|||
external: true
|
||||
CLIENT_SECRET_HEADADMIN:
|
||||
external: true
|
||||
CLIENT_SECRET_PORTAINER:
|
||||
external: true
|
||||
# TEMPORARILY DISABLED - Gitea OAuth (not ready yet)
|
||||
# CLIENT_SECRET_GITEA:
|
||||
# external: true
|
||||
|
||||
networks:
|
||||
default:
|
||||
|
@ -66,6 +71,7 @@ services:
|
|||
- STORAGE_ENCRYPTION_KEY
|
||||
- CLIENT_SECRET_HEADSCALE
|
||||
- CLIENT_SECRET_HEADADMIN
|
||||
- CLIENT_SECRET_PORTAINER
|
||||
environment: *authelia-env
|
||||
dns:
|
||||
- 1.1.1.1 # Cloudflare
|
||||
|
|
Loading…
Reference in New Issue