From 64465f41260c9d297f0231e705e1d8977c9259f8 Mon Sep 17 00:00:00 2001 From: Colin Hebert Date: Mon, 26 Aug 2024 10:14:54 +1000 Subject: [PATCH] Enable OIDC for Authelia --- authentication/docker-compose.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/authentication/docker-compose.yml b/authentication/docker-compose.yml index b47af95..273d568 100644 --- a/authentication/docker-compose.yml +++ b/authentication/docker-compose.yml @@ -14,6 +14,8 @@ services: AUTHELIA_NOTIFIER_SMTP_USERNAME: ${NASCOMPOSE_AUTHELIA_SMTP_USERNAME?} AUTHELIA_NOTIFIER_SMTP_PASSWORD_FILE: /run/secrets/smtp_password AUTHELIA_NOTIFIER_SMTP_SENDER: "authelia@${NASCOMPOSE_DOMAIN?}" + AUTHELIA_IDENTITY_PROVIDERS_OIDC_HMAC_SECRET_FILE: /run/secrets/oidcsecret + AUTHELIA_IDENTITY_PROVIDERS_OIDC_ISSUER_PRIVATE_KEY_FILE: /run/secrets/oicd.pem X_AUTHELIA_CONFIG_FILTERS: template TEMPLATE_NASCOMPOSE_DOMAIN: ${NASCOMPOSE_DOMAIN?} networks: @@ -29,6 +31,8 @@ services: - ${NASCOMPOSE_SERVICES?}/authentication/secrets/authelia_jwt_secret:/run/secrets/jwt_secret:ro - ${NASCOMPOSE_SERVICES?}/authentication/secrets/authelia_storage_key:/run/secrets/storage_key:ro - ${NASCOMPOSE_SERVICES?}/authentication/secrets/authelia_smtp_password:/run/secrets/smtp_password:ro + - ${NASCOMPOSE_SERVICES?}/authentication/secrets/authelia_oidcsecret:/run/secrets/oidcsecret:ro + - ${NASCOMPOSE_SERVICES?}/authentication/secrets/authelia_oicd.pem:/run/secrets/oicd.pem:ro restart: unless-stopped labels: traefik.enable: true