Blame view

frontend/config/main.php 2.75 KB
a0e8d4e0   Alexey Boroda   first commit
1
2
3
  <?php
      use artbox\core\components\LanguageRequest;
      use artbox\core\components\SeoUrlManager;
09140c43   Timur Kastemirov   direct redirects
4
      use frontend\models\DirectRedirects;
a0e8d4e0   Alexey Boroda   first commit
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
      
      $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',
          'homeUrl'             => '/',
          'basePath'            => dirname(__DIR__),
          'bootstrap'           => [ 'log' ],
          'controllerNamespace' => 'frontend\controllers',
          'components'          => [
              'request'      => [
                  'class'     => LanguageRequest::className(),
                  'csrfParam' => '_csrf-frontend',
                  'baseUrl'   => '',
              ],
              'user'         => [
                  'identityClass'   => 'common\models\User',
                  'enableAutoLogin' => true,
                  'identityCookie'  => [
                      'name'     => '_identity-frontend',
                      'httpOnly' => true,
                  ],
              ],
              'session'      => [
                  // this is the name of the session cookie used for login on the frontend
                  'name' => 'advanced-frontend',
              ],
              'log'          => [
                  'traceLevel' => YII_DEBUG ? 3 : 0,
                  'targets'    => [
                      [
                          'class'  => 'yii\log\FileTarget',
                          'levels' => [
                              'error',
                              'warning',
                          ],
                      ],
                  ],
              ],
              'errorHandler' => [
                  'errorAction' => 'site/error',
              ],
              'urlManager'   => [
                  'class'           => SeoUrlManager::className(),
                  'enablePrettyUrl' => true,
09140c43   Timur Kastemirov   direct redirects
55
56
57
                  'redirects' => [
                      DirectRedirects::className(),
                  ],
a0e8d4e0   Alexey Boroda   first commit
58
59
60
                  'showScriptName'  => false,
                  'processRoutes'   => [
                      'page/view',
59700e2c   Alexey Boroda   -Need to add comm...
61
62
63
                      'blog/category',
                      'blog/tag',
                      'blog/article',
e75f2ac9   Alexey Boroda   -Doctor pages fro...
64
                      'persone/view',
5a414589   Alexey Boroda   -Custom rouste added
65
66
67
68
69
70
71
                      'site/about',
                      'site/gallery',
                      'blog/index',
                      'site/price',
                      'site/contact',
                      'persone/index',
                      'site/comments',
a0e8d4e0   Alexey Boroda   first commit
72
73
                  ],
                  'rules'           => [
d7c41411   Alexey Boroda   robots chaged fro...
74
                      '\/robots\.txt' => 'site/robots',
a0e8d4e0   Alexey Boroda   first commit
75
76
77
78
79
                  ],
              ],
          ],
          'params'              => $params,
      ];