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" }}/
|
- https://portainer.{{ env "TRAEFIK_DOMAIN" }}/
|
||||||
userinfo_signed_response_alg: none
|
userinfo_signed_response_alg: none
|
||||||
|
|
||||||
- client_id: gitea
|
# TEMPORARILY DISABLED - Gitea OAuth client (missing CLIENT_SECRET_GITEA)
|
||||||
client_name: Gitea
|
# - client_id: gitea
|
||||||
client_secret: {{ secret "/run/secrets/CLIENT_SECRET_GITEA" }}
|
# client_name: Gitea
|
||||||
public: false
|
# client_secret: {{ secret "/run/secrets/CLIENT_SECRET_GITEA" }}
|
||||||
authorization_policy: one_factor
|
# public: false
|
||||||
consent_mode: implicit
|
# authorization_policy: one_factor
|
||||||
scopes:
|
# consent_mode: implicit
|
||||||
- openid
|
# scopes:
|
||||||
- email
|
# - openid
|
||||||
- profile
|
# - email
|
||||||
- groups
|
# - profile
|
||||||
redirect_uris:
|
# - groups
|
||||||
- https://git.{{ env "TRAEFIK_DOMAIN" }}/user/oauth2/authelia/callback
|
# redirect_uris:
|
||||||
userinfo_signed_response_alg: none
|
# - https://git.{{ env "TRAEFIK_DOMAIN" }}/user/oauth2/authelia/callback
|
||||||
|
# userinfo_signed_response_alg: none
|
|
@ -26,6 +26,11 @@ secrets:
|
||||||
external: true
|
external: true
|
||||||
CLIENT_SECRET_HEADADMIN:
|
CLIENT_SECRET_HEADADMIN:
|
||||||
external: true
|
external: true
|
||||||
|
CLIENT_SECRET_PORTAINER:
|
||||||
|
external: true
|
||||||
|
# TEMPORARILY DISABLED - Gitea OAuth (not ready yet)
|
||||||
|
# CLIENT_SECRET_GITEA:
|
||||||
|
# external: true
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
default:
|
default:
|
||||||
|
@ -66,6 +71,7 @@ services:
|
||||||
- STORAGE_ENCRYPTION_KEY
|
- STORAGE_ENCRYPTION_KEY
|
||||||
- CLIENT_SECRET_HEADSCALE
|
- CLIENT_SECRET_HEADSCALE
|
||||||
- CLIENT_SECRET_HEADADMIN
|
- CLIENT_SECRET_HEADADMIN
|
||||||
|
- CLIENT_SECRET_PORTAINER
|
||||||
environment: *authelia-env
|
environment: *authelia-env
|
||||||
dns:
|
dns:
|
||||||
- 1.1.1.1 # Cloudflare
|
- 1.1.1.1 # Cloudflare
|
||||||
|
|
Loading…
Reference in New Issue