From a55985ce6d538fdfdff4a66da03604ff1c0728ef Mon Sep 17 00:00:00 2001 From: Hugh Nimmo-Smith Date: Fri, 9 Dec 2022 16:48:32 +0000 Subject: [PATCH] Update configuration docs to reference ULID --- docs/usage/configuration.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/usage/configuration.md b/docs/usage/configuration.md index 39e3e9b7c..6f2f8b347 100644 --- a/docs/usage/configuration.md +++ b/docs/usage/configuration.md @@ -150,19 +150,19 @@ templates: ### `clients` -List of OAuth 2.0/OIDC clients and their keys/secrets. +List of OAuth 2.0/OIDC clients and their keys/secrets. Each `client_id` must be a [ULID](https://github.com/ulid/spec). ```yaml clients: # Confidential client - - client_id: first + - client_id: FIRST000000000000000000000 client_auth_method: clent_secret_post client_secret: secret # List of authorized redirect URIs redirect_uris: - http://localhost:1234/callback # Public client - - client_id: second + - client_id: SEC0ND00000000000000000000 client_auth_method: none ```