From be9ee526316914ffa666b78bdb5af277a2e0a3d8 Mon Sep 17 00:00:00 2001 From: Michel Jung Date: Wed, 21 Aug 2024 22:21:52 +0200 Subject: [PATCH] Fix passkey documentation I found the correct way to set it up here in https://github.com/ory/kratos/blob/68693a43e4e1e3028f17789e72d0b79f6298d139/contrib/quickstart/kratos/all-strategies/kratos.yml#L37 --- docs/kratos/passwordless/05_passkeys.mdx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/kratos/passwordless/05_passkeys.mdx b/docs/kratos/passwordless/05_passkeys.mdx index 2e1e8e338..4016e3349 100644 --- a/docs/kratos/passwordless/05_passkeys.mdx +++ b/docs/kratos/passwordless/05_passkeys.mdx @@ -78,7 +78,13 @@ import TabItem from '@theme/TabItem'; passkey: enabled: true config: - display_name: "My Display Name"`} + rp: + display_name: Your Application name + # Set 'id' to the top-level domain. + id: localhost + # Set 'origin' to the exact URL of the page that prompts the user to use WebAuthn. You must include the scheme, host, and port. + origins: + - http://localhost:4455`} ```