yii2-netdisk/config/web.php

55 lines
1.5 KiB
PHP
Raw Normal View History

2013-05-24 22:14:49 +08:00
<?php
$params = require(__DIR__ . '/params.php');
2013-10-18 13:30:41 +08:00
$config = [
2014-03-16 12:46:16 +08:00
'id' => 'basic',
'basePath' => dirname(__DIR__),
2014-04-11 03:05:01 +08:00
'bootstrap' => ['log'],
2014-03-16 12:46:16 +08:00
'components' => [
'request' => [
// a secret key used to validate cookies. You may modify this key with your own one.
'cookieValidationKey' => '',
],
2014-03-16 12:46:16 +08:00
'cache' => [
'class' => 'yii\caching\FileCache',
],
'user' => [
'identityClass' => 'app\models\User',
'enableAutoLogin' => true,
],
'errorHandler' => [
'errorAction' => 'site/error',
],
'mailer' => [
2014-03-16 12:46:16 +08:00
'class' => 'yii\swiftmailer\Mailer',
// send all mails to a file by default. You have to set
// 'useFileTransport' to false and configure a transport
// for the mailer to send real emails.
2014-03-16 12:46:16 +08:00
'useFileTransport' => true,
],
'log' => [
'traceLevel' => YII_DEBUG ? 3 : 0,
'targets' => [
[
'class' => 'yii\log\FileTarget',
'levels' => ['error', 'warning'],
],
],
],
'db' => require(__DIR__ . '/db.php'),
2014-03-16 12:46:16 +08:00
],
'params' => $params,
2013-10-18 13:30:41 +08:00
];
2013-08-10 19:56:40 +08:00
2013-12-18 13:40:52 +08:00
if (YII_ENV_DEV) {
2014-03-16 12:46:16 +08:00
// configuration adjustments for 'dev' environment
$config['bootstrap'][] = 'debug';
2014-03-16 12:46:16 +08:00
$config['modules']['debug'] = 'yii\debug\Module';
$config['bootstrap'][] = 'gii';
2014-03-16 12:46:16 +08:00
$config['modules']['gii'] = 'yii\gii\Module';
2013-08-10 19:56:40 +08:00
}
return $config;