Blame view

frontend/config/main.php 1.69 KB
1755c393   Yarik   Basic template in...
1
  <?php
f3b6b9b1   Alexey Boroda   -Seo component in...
2
3
4
5
      use artbox\core\components\LanguageRequest;
      use artbox\core\components\SeoUrlManager;
      
      $params = array_merge(
1755c393   Yarik   Basic template in...
6
7
8
9
10
11
12
13
      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',
b66c9c5a   Alexey Boroda   -Admin template s...
14
      'homeUrl' => '/',
1755c393   Yarik   Basic template in...
15
16
17
18
19
      'basePath' => dirname(__DIR__),
      'bootstrap' => ['log'],
      'controllerNamespace' => 'frontend\controllers',
      'components' => [
          'request' => [
f3b6b9b1   Alexey Boroda   -Seo component in...
20
              'class'     => LanguageRequest::className(),
1755c393   Yarik   Basic template in...
21
              'csrfParam' => '_csrf-frontend',
f3b6b9b1   Alexey Boroda   -Seo component in...
22
              'baseUrl'   => '',
1755c393   Yarik   Basic template in...
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
          ],
          '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',
          ],
1755c393   Yarik   Basic template in...
45
          'urlManager' => [
f3b6b9b1   Alexey Boroda   -Seo component in...
46
              'class'           => SeoUrlManager::className(),
1755c393   Yarik   Basic template in...
47
              'enablePrettyUrl' => true,
f3b6b9b1   Alexey Boroda   -Seo component in...
48
49
              'showScriptName'  => false,
              'rules'           => [
15b8e84d   Yarik   Different Seo tasks
50
                  '\/robots.txt' => 'site/robots',
1755c393   Yarik   Basic template in...
51
52
              ],
          ],
1755c393   Yarik   Basic template in...
53
54
55
      ],
      'params' => $params,
  ];