2018-10-11 11:15:09 +03:00
|
|
|
<?php
|
|
|
|
$params = array_merge(
|
|
|
|
require __DIR__ . '/../../common/config/params.php',
|
|
|
|
require __DIR__ . '/../../common/config/params-local.php',
|
|
|
|
require __DIR__ . '/params.php',
|
|
|
|
require __DIR__ . '/params-local.php'
|
|
|
|
);
|
|
|
|
|
|
|
|
return [
|
|
|
|
'id' => 'app-backend',
|
|
|
|
'basePath' => dirname(__DIR__),
|
|
|
|
'controllerNamespace' => 'backend\controllers',
|
|
|
|
'bootstrap' => ['log'],
|
|
|
|
|
|
|
|
'modules' => [
|
|
|
|
'status' => [
|
|
|
|
'class' => 'backend\modules\status\Status',
|
|
|
|
],
|
|
|
|
'fields' => [
|
|
|
|
'class' => 'backend\modules\fields\Fields',
|
|
|
|
],
|
|
|
|
'card' => [
|
|
|
|
'class' => 'backend\modules\card\Card',
|
|
|
|
],
|
|
|
|
'project' => [
|
|
|
|
'class' => 'backend\modules\project\Project',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'components' => [
|
|
|
|
'request' => [
|
|
|
|
'csrfParam' => '_csrf-backend',
|
|
|
|
'baseUrl' => '/secure',
|
|
|
|
],
|
|
|
|
'user' => [
|
|
|
|
'identityClass' => 'common\models\User',
|
|
|
|
'enableAutoLogin' => true,
|
|
|
|
'identityCookie' => ['name' => '_identity-backend', 'httpOnly' => true],
|
|
|
|
],
|
|
|
|
'session' => [
|
|
|
|
// this is the name of the session cookie used for login on the backend
|
|
|
|
'name' => 'advanced-backend',
|
|
|
|
],
|
|
|
|
'log' => [
|
|
|
|
'traceLevel' => YII_DEBUG ? 3 : 0,
|
|
|
|
'targets' => [
|
|
|
|
[
|
|
|
|
'class' => 'yii\log\FileTarget',
|
|
|
|
'levels' => ['error', 'warning'],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'errorHandler' => [
|
|
|
|
'errorAction' => 'site/error',
|
|
|
|
],
|
|
|
|
'urlManager' => [
|
|
|
|
'enablePrettyUrl' => true,
|
|
|
|
'showScriptName' => false,
|
|
|
|
'rules' => [
|
2018-10-11 14:52:44 +03:00
|
|
|
'' => '/card/user-card'
|
2018-10-11 11:15:09 +03:00
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
|
|
],
|
2018-10-11 14:52:44 +03:00
|
|
|
'as access' => [
|
|
|
|
'class' => 'yii\filters\AccessControl',
|
|
|
|
'except' => ['site/login', 'site/error'],
|
|
|
|
'rules' => [
|
|
|
|
[
|
|
|
|
'allow' => true,
|
|
|
|
'roles' => ['@'],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
2018-10-11 11:15:09 +03:00
|
|
|
'params' => $params,
|
|
|
|
];
|