12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?php
- $config = [
- 'id' => 'basic',
- 'basePath' => dirname(__DIR__),
- 'extensions' => require(__DIR__ . '/../vendor/yiisoft/extensions.php'),
- 'defaultRoute' => 'walle/index',
- 'components' => [
- 'db' => [
- 'class' => 'yii\db\Connection',
- 'dsn' => 'mysql:host=127.0.0.1;dbname=test',
- 'username' => 'username',
- 'password' => 'password',
- 'charset' => 'utf8',
- ],
- 'mongodb' => [
- 'class' => '\yii\mongodb\Connection',
- 'dsn' => 'mongodb://localhost:27017/local',
- ],
- 'errorHandler' => [
- 'errorAction' => 'site/error',
- ],
- 'mail' => [
- 'class' => 'yii\swiftmailer\Mailer',
- 'useFileTransport' => false,
- 'transport' => [
- 'class' => 'Swift_SmtpTransport',
- 'host' => 'ip or host',
- 'username' => 'admin@huamanshu.com',
- 'password' => 'password',
- 'port' => 25,
- 'encryption' => 'tls',
- ],
- 'messageConfig' => [
- 'charset' => 'UTF-8',
- 'from' => ['admin@humanshu.com' => '花满树出品']
- ],
- ],
- 'log' => [
- 'traceLevel' => YII_DEBUG ? 3 : 0,
- 'targets' => [
- [
- 'class' => 'yii\log\FileTarget',
- 'levels' => ['error', 'warning'],
- ],
- ],
- ],
- 'user' => [
- 'identityClass' => 'app\models\User',
- 'enableAutoLogin' => true,
- ],
- 'i18n' => [
- 'translations' => [
- '*' => [
- 'class' => 'yii\i18n\PhpMessageSource',
- 'basePath' => '@app/messages',
- ],
- ],
- ],
- 'urlManager' => [
- 'enablePrettyUrl' => true,
- 'showScriptName' => false,
- 'rules'=>[
- '<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
- ],
- ],
- ],
- 'language' => 'zh-CN',
- 'bootstrap' => [
- 'app\components\EventBootstrap',
- ],
- 'params' => require(__DIR__.'/params.php'),
- ];
- if (YII_ENV_DEV) {
- $config['bootstrap'][] = 'debug';
- $config['modules']['debug'] = [
- 'class' => 'yii\debug\Module',
- 'allowedIPs' => ['*'],
- ];
- $config['modules']['gii'] = [
- 'class' => 'yii\gii\Module',
- 'generators' => [
- 'mongoDbModel' => [
- 'class' => 'yii\mongodb\gii\model\Generator'
- ],
- ],
- ];
- }
- return $config;
|