1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
<?php
/**
* Account configuration file for UserFrosting.
*
*/
return [
'debug' => [
'auth' => false
],
// configuration for the 'password reset' feature
'password_reset' => [
'algorithm' => 'sha512',
'timeouts' => [
'create' => 86400,
'reset' => 10800
]
],
// See https://github.com/gbirke/rememberme for an explanation of these settings
'remember_me' => [
'cookie' => [
'name' => 'rememberme'
],
'expire_time' => 604800,
'session' => [
'path' => '/'
],
'table' => [
'tableName' => 'persistences',
'credentialColumn' => 'user_id',
'tokenColumn' => 'token',
'persistentTokenColumn' => 'persistent_token',
'expiresColumn' => 'expires_at'
]
],
'reserved_user_ids' => [
'guest' => -1,
'master' => 1
],
'session' => [
// The keys used in the session to store info about authenticated users
'keys' => [
'current_user_id' => 'account.current_user_id', // the key to use for storing the authenticated user's id
'captcha' => 'account.captcha' // Key used to store a captcha hash during captcha verification
]
],
// "Site" settings that are automatically passed to Twig
'site' => [
'login' => [
'enable_email' => true
],
'registration' => [
'enabled' => true,
'captcha' => true,
'require_email_verification' => true,
'user_defaults' => [
'locale' => 'en_US',
'group' => 'terran',
// Default roles for newly registered users
'roles' => [
'user' => true
]
]
]
],
'throttles' => [
'check_username_request' => null,
'password_reset_request' => null,
'registration_attempt' => null,
'sign_in_attempt' => null,
'verification_request' => null
],
// configuration for the 'email verification' feature
'verification' => [
'algorithm' => 'sha512',
'timeout' => 10800
]
];
|