main.php
2.31 KB
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
<?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-frontend',
    'basePath' => dirname(__DIR__),
    'bootstrap' => ['log'],
    'controllerNamespace' => 'frontend\controllers',
    'components' => [
        'user' => [
            'identityClass' => 'common\models\Accounts',
            'enableAutoLogin' => true,
            'identityCookie' => [
                'name' => '_frontendUser', // unique for frontend
            ]
        ],
        'request'=>[
            'cookieValidationKey' => 'ndahjhjjidasuidrqeswuiuirqw89',
            'csrfParam' => '_frontendCSRF',
            'class' => 'common\components\Request',
            'web'=> '/frontend/web'
        ],
        'session' => [
            'name' => 'PHPFRONTSESSID',
            'savePath' => __DIR__ . '/../tmp',
        ],
        'log' => [
            'traceLevel' => YII_DEBUG ? 3 : 0,
            'targets' => [
                [
                    'class' => 'yii\log\FileTarget',
                    'levels' => ['error', 'warning'],
                ],
            ],
        ],
        'errorHandler' => [
            'errorAction' => 'site/error',
        ],
        'urlManager' => [
            'baseUrl' => '/',
            'enablePrettyUrl' => true,
            'showScriptName' => false,
            'rules' => [
                'news/<translit:[\w-]+>' => 'news/view',
                'news' => 'news/index',
                'page/<translit:[\w-]+>'=>'page/view',
                'company/<translit:[\w-]+>'=>'page/about',
                'goods/one-item/<translit:[\w-]+>'=>'goods/one-item',
                'goods/view/<translit:[\w-]+>'=>'goods/view',
                'stone/view/<translit:[\w-]+>'=>'stone/view',
                'events/view/<translit:[\w-]+>'=>'events/view',
                'standard-services/view/<translit:[\w-]+>'=>'standard-services/view',
                'f/<filter:([\w\=\;\/\-\_]+)?>'=>'stone/ajax-filter',
                'search'=>'site/search',
                'contact'=>'site/contact',
                'about'=>'site/about',
                'success'=>'site/success',
            ]
        ]
    ],
    'params' => $params,
];