diff --git a/docs/setup/sso.md b/docs/setup/sso.md index c883d4a68..cd359aef6 100644 --- a/docs/setup/sso.md +++ b/docs/setup/sso.md @@ -101,26 +101,25 @@ Authentication service configuration: ```yaml upstream_oauth2: providers: - providers: - - id: - human_name: Authelia - issuer: "https://" # TO BE FILLED W/O ANY TRAILING SLASHES - client_id: "" # TO BE FILLED - client_secret: "" # TO BE FILLED - token_endpoint_auth_method: client_secret_basic - scope: "openid profile email" - discovery_mode: insecure - claims_imports: - localpart: - action: require - template: "{{ user.preferred_username }}" - displayname: - action: suggest - template: "{{ user.name }}" - email: - action: suggest - template: "{{ user.email }}" - set_email_verification: always + - id: + human_name: Authelia + issuer: "https://" # TO BE FILLED W/O ANY TRAILING SLASHES + client_id: "" # TO BE FILLED + client_secret: "" # TO BE FILLED + token_endpoint_auth_method: client_secret_basic + scope: "openid profile email" + discovery_mode: insecure + claims_imports: + localpart: + action: require + template: "{{ user.preferred_username }}" + displayname: + action: suggest + template: "{{ user.name }}" + email: + action: suggest + template: "{{ user.email }}" + set_email_verification: always ```