forked from jianyan74/rageframe2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.php
58 lines (57 loc) · 1.75 KB
/
main.php
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
<?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' => 'html5',
'basePath' => dirname(__DIR__),
'controllerNamespace' => 'html5\controllers',
'bootstrap' => ['log'],
'modules' => [],
'components' => [
'request' => [
'csrfParam' => '_csrf-html5',
],
'user' => [
'identityClass' => 'common\models\member\Member',
'enableAutoLogin' => true,
'identityCookie' => ['name' => '_identity-html5', 'httpOnly' => true],
'loginUrl' => ['site/login'],
'idParam' => '__html5',
],
'session' => [
// this is the name of the session cookie used for login on the html5
'name' => 'advanced-html5',
'timeout' => 86400,
],
'log' => [
'traceLevel' => YII_DEBUG ? 3 : 0,
'targets' => [
[
'class' => 'yii\log\FileTarget',
'levels' => ['error', 'warning'],
'logFile' => '@runtime/logs/' . date('Y-m/d') . '.log',
],
],
],
'errorHandler' => [
'errorAction' => 'site/error',
],
'urlManager' => [
'enablePrettyUrl' => true,
'showScriptName' => false,
'rules' => [
],
],
'response' => [
'class' => 'yii\web\Response',
'on beforeSend' => function($event) {
Yii::$app->services->log->record($event->sender);
},
],
],
'params' => $params,
];