summary refs log tree commit diff
diff options
context:
space:
mode:
authorIronTooch <27360514+IronTooch@users.noreply.github.com>2022-03-25 08:40:10 -0400
committerGitHub <noreply@github.com>2022-03-25 12:40:10 +0000
commit61aae18d4533d8196fdc9130598331833f3d9c2a (patch)
tree4e1c752b51793830496f222e7171494616cc8701
parentMention the new behaviour on unsafe database locale in the upgrade notes (#12... (diff)
downloadsynapse-61aae18d4533d8196fdc9130598331833f3d9c2a.tar.xz
Authentik OpenID minor doc update (#12275)
-rw-r--r--changelog.d/12275.doc1
-rw-r--r--docs/openid.md4
2 files changed, 4 insertions, 1 deletions
diff --git a/changelog.d/12275.doc b/changelog.d/12275.doc
new file mode 100644

index 0000000000..2e26ad21eb --- /dev/null +++ b/changelog.d/12275.doc
@@ -0,0 +1 @@ +Corrected Authentik OpenID typo, added helpful note for troubleshooting. Contributed by @IronTooch. diff --git a/docs/openid.md b/docs/openid.md
index 171ea3b712..19cacaafef 100644 --- a/docs/openid.md +++ b/docs/openid.md
@@ -225,6 +225,8 @@ oidc_providers: 3. Create an application for synapse in Authentik and link it to the provider. 4. Note the slug of your application, Client ID and Client Secret. +Note: RSA keys must be used for signing for Authentik, ECC keys do not work. + Synapse config: ```yaml oidc_providers: @@ -240,7 +242,7 @@ oidc_providers: - "email" user_mapping_provider: config: - localpart_template: "{{ user.preferred_username }}}" + localpart_template: "{{ user.preferred_username }}" display_name_template: "{{ user.preferred_username|capitalize }}" # TO BE FILLED: If your users have names in Authentik and you want those in Synapse, this should be replaced with user.name|capitalize. ```