From e5647024308678043f9e2f494ac1a49366c8a8d9 Mon Sep 17 00:00:00 2001 From: Roland Schneider Date: Tue, 28 Sep 2021 18:40:55 +0200 Subject: [PATCH] set jwt secret --- customerapi/config/main.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/customerapi/config/main.php b/customerapi/config/main.php index 1bfb925..0d783de 100644 --- a/customerapi/config/main.php +++ b/customerapi/config/main.php @@ -44,7 +44,7 @@ return [ ], 'jwt' => [ 'class' => Jwt::class, - 'key' => 'secret', + 'key' => 'Ability is nothing without opportunity', // You have to configure ValidationData informing all claims you want to validate the token. 'jwtValidationData' => JwtValidationData::class, ],