`config.web.php` already provides a prefix, so `config.security` should not provide one.

Can be merged later whenever necessary.
This commit is contained in:
Abel Hoogeveen 2022-03-15 19:18:45 +01:00
parent cd331dc39d
commit 3c7011eddb
Signed by: abelhooge
GPG Key ID: C540221690CBFFBA
1 changed files with 2 additions and 2 deletions

View File

@ -50,12 +50,12 @@ return [
| 'csrf_exclude_uris' = Array of URIs which ignore CSRF checks
*/
'csrf_protection' => true,
'csrf_token_name' => 'fw_csrf_token',
'csrf_token_name' => 'csrf_token',
'csrf_expire' => 7200,
'csrf_exclude_uris' => array(),
// CSRF Cookie information
'csrf_cookie_name' => 'fw_csrf_cookie',
'csrf_cookie_name' => 'csrf_cookie',
'csrf_cookie_prefix' => '',
'csrf_cookie_domain' => '',
'csrf_cookie_path' => '/',