Document OIDC JWK key handling in git config

path:// scheme not supported for key field in Authelia 4.38.
Host copy inlines the PEM as a YAML block scalar written via Python.
This commit is contained in:
2026-02-26 20:49:19 +00:00
parent e6d4b0a349
commit 696398a863
+4 -3
View File
@@ -59,9 +59,10 @@ identity_providers:
- key_id: main - key_id: main
algorithm: RS256 algorithm: RS256
use: sig use: sig
# key: HOST-MANAGED — inline /srv/authelia/config/oidc.key contents here in the # key is host-managed — never commit to git
# host copy (/srv/authelia/config/configuration.yml). Never commit the key to git. # Host copy inlines the PEM content as a YAML block scalar (key: |)
# Generate with: openssl genrsa -out /srv/authelia/config/oidc.key 4096 # using Python to avoid shell $ interpolation of the PEM content.
# Generate with: openssl genpkey -algorithm RSA -pkeyopt rsa_keygen_bits:4096 -out /srv/authelia/config/oidc.key
clients: clients:
- client_id: open-webui - client_id: open-webui
client_name: Open WebUI client_name: Open WebUI