Merge branch 'develop' of https://gitlab.com/feat_hbence/fitness-web into develop
This commit is contained in:
commit
bdd5a94b3f
@ -16,6 +16,14 @@ return [
|
||||
'user' => [
|
||||
'identityClass' => 'common\models\User',
|
||||
'enableAutoLogin' => true,
|
||||
'identityCookie' => [
|
||||
'name' => '_backendUser', // unique for backend
|
||||
'path'=>'/backend/web' // correct path for the backend app.
|
||||
]
|
||||
],
|
||||
'session' => [
|
||||
'name' => '_backendSessionId', // unique for backend
|
||||
'savePath' => __DIR__ . '/../runtime', // a temporary folder on backend
|
||||
],
|
||||
'log' => [
|
||||
'traceLevel' => YII_DEBUG ? 3 : 0,
|
||||
|
||||
@ -15,6 +15,14 @@ return [
|
||||
'user' => [
|
||||
'identityClass' => 'common\models\User',
|
||||
'enableAutoLogin' => true,
|
||||
'identityCookie' => [
|
||||
'name' => '_frontendUser', // unique for frontend
|
||||
'path'=>'/frontend/web' // correct path for the frontend app.
|
||||
]
|
||||
],
|
||||
'session' => [
|
||||
'name' => '_frontendSessionId', // unique for frontend
|
||||
'savePath' => __DIR__ . '/../runtime', // a temporary folder on frontend
|
||||
],
|
||||
'log' => [
|
||||
'traceLevel' => YII_DEBUG ? 3 : 0,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user