First iteration of using cookies to store session/securetoken
This commit is contained in:
@ -29,16 +29,17 @@ return (object) array(
|
||||
// File containing your <externalresource> token
|
||||
|
||||
'JWT' => [
|
||||
'PrivateKey_base64' => 'result of base64_encode(<longrandomstring>)',
|
||||
'PrivateKey_base64' => '',
|
||||
// A base64-encoded string of a random string (see https://www.base64encode.org/)
|
||||
'Algorithm' => [
|
||||
'HS256',
|
||||
]
|
||||
],
|
||||
|
||||
'Cookie' => [
|
||||
'Duration' => 2592000,
|
||||
'Session' => [
|
||||
'Duration' => 2592000,
|
||||
// In seconds (2592000 is equivalent to 30 days)
|
||||
# 'Prefix' => 'lucidAuth_'
|
||||
# 'CookiePrefix' => 'lucidAuth_'
|
||||
],
|
||||
|
||||
'Debug' => [
|
||||
|
Reference in New Issue
Block a user