yii2-netdisk/config/web.php

33 lines
665 B
PHP
Raw Normal View History

2013-05-24 22:14:49 +08:00
<?php
2013-05-24 22:14:49 +08:00
return array(
'id' => 'bootstrap',
'basePath' => dirname(__DIR__),
'preload' => array('debug'),
'modules' => array(
'debug' => array(
'class' => 'yii\debug\Module',
'enabled' => YII_DEBUG && YII_ENV === 'dev',
),
),
2013-05-24 22:14:49 +08:00
'components' => array(
'cache' => array(
'class' => 'yii\caching\FileCache',
),
'user' => array(
'class' => 'yii\web\User',
'identityClass' => 'app\models\User',
),
'log' => array(
2013-07-11 00:57:36 +08:00
'traceLevel' => YII_DEBUG ? 3 : 0,
2013-05-24 22:14:49 +08:00
'targets' => array(
array(
2013-07-03 10:09:25 +08:00
'class' => 'yii\log\FileTarget',
2013-05-24 22:14:49 +08:00
'levels' => array('error', 'warning'),
),
),
),
),
'params' => require(__DIR__ . '/params.php'),
2013-05-24 22:14:49 +08:00
);