main.php 1.74 KB
<?php
$params = array_merge(
    require(__DIR__ . '/../../common/config/params.php'),
    (@include(__DIR__ . '/../../common/config/params-local.php'))?:[],
    require(__DIR__ . '/params.php'),
    (@include(__DIR__ . '/params-local.php'))?:[]
);

return [
    'id' => 'app-backend',
    'basePath' => dirname(__DIR__),
    'controllerNamespace' => 'backend\controllers',
    'bootstrap' => ['log'],
    'modules' => [],
    'components' => [
        'request' => [
            'csrfParam' => '_csrf-backend',
            'enableCsrfValidation' => false,
        ],
        'user' => [
            'identityClass' => 'backend\models\Admin',
            'enableAutoLogin' => true,
            'identityCookie' => ['name' => '_identity-backend', 'httpOnly' => true],
        ],
        'authManager' => [
            'class' => 'yii\rbac\DbManager',
            'cache'=>'fileCache',
        ],
        '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' => [
                '<controller:\w+>/<id:[\d-]+>' => '<controller>/view',
                '<controller:\w+>/<action:\w+>/<id:[\d-]+>' => '<controller>/<action>',
            ],
        ],
    ],
    'defaultRoute'=>'index/index',
    'params' => $params,
];