From a62ffd22b3b73cb5a9ad3d9a785e7690bf6b8722 Mon Sep 17 00:00:00 2001 From: artosepyan Date: Thu, 14 Aug 2025 21:17:20 +0300 Subject: [PATCH] chore: Update config's description accordingly to the Clerk UI Refs: https://github.com/RonasIT/laravel-clerk/issues/16 --- config/clerk.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/clerk.php b/config/clerk.php index 14b9297..8d529b2 100644 --- a/config/clerk.php +++ b/config/clerk.php @@ -6,7 +6,7 @@ | Token issuer, url |-------------------------------------------------------------------------- | You can find your Clerk Frontend API URL in your Clerk dashboard under: - | "Configure" -> "API keys" -> "Show API URLs" -> "Frontend API URL" + | "Configure" -> "API keys" -> "Frontend API URL" */ 'allowed_issuer' => env('CLERK_ALLOWED_ISSUER'), @@ -34,7 +34,7 @@ |-------------------------------------------------------------------------- | Path to your public JWT key file. You can find the file content in your | Clerk dashboard under: - | "Configure" -> "API keys" -> "Show JWT public key" -> "PEM Public Key" + | "Configure" -> "API keys" -> "JWKS Public Key"" */ 'signer_key_path' => env('CLERK_SIGNER_KEY_PATH', 'clerk.pem'), ];