File: /home/emblazeone/public_html/help/config/web.php
<?php
$params = require __DIR__ . '/params.php';
//$db = require __DIR__ . '/db.php';
$config = [
'id' => 'basic',
'basePath' => dirname(__DIR__),
'bootstrap' => ['log'],
'aliases' => [
'@bower' => '@vendor/bower-asset',
'@npm' => '@vendor/npm-asset',
'@wbp' => '@vendor/wbp',
],
'components' => [
'request' => [
'cookieValidationKey' => 'jkskewlkqwewoop329932jf23fjdjjdjw',
'class' => 'wbp\lang\LangRequest',
'baseUrl' => '',
],
'assetManager' => [
'linkAssets' => true,
],
'cache' => [
'class' => 'yii\caching\FileCache',
],
'user' => [
'identityClass' => 'app\models\User',
'enableAutoLogin' => true,
],
'errorHandler' => [
'errorAction' => 'site/error',
],
'log' => [
'traceLevel' => YII_DEBUG ? 3 : 0,
'targets' => [
[
'class' => 'yii\log\FileTarget',
'levels' => ['error', 'warning'],
],
[
'class' => 'yii\log\EmailTarget',
'mailer' => 'mailer',
'levels' => ['error', 'warning'],
'except' => [
'yii\web\HttpException:404',
'yii\web\HttpException:400',
'yii\web\HttpException:403',
],
'message' => [
'from' => ['info@oneshotketo.com'],
'to' => ['pavel.chernetsky@gmail.com'],
'subject' => 'Limitless Support Error',
],
],
],
],
'mailer' => [
'class' => 'yii\swiftmailer\Mailer',
],
'urlManager' => [
'class'=>'wbp\urlManager\UrlManager',
'enablePrettyUrl' => true,
'showScriptName' => false,
'rules' => [
''=>'site/index',
'<action>'=>'site/<action>',
],
],
'lang' => [
'class'=>'wbp\lang\Lang',
'languages'=>[
'en_US'=>'',
],
'languagesUrls'=>[
'en_US'=>'',
],
],
// 'db' => $db,
/*
'urlManager' => [
'enablePrettyUrl' => true,
'showScriptName' => false,
'rules' => [
],
],
*/
],
'params' => $params,
];
if (YII_ENV_DEV) {
// configuration adjustments for 'dev' environment
// $config['bootstrap'][] = 'debug';
// $config['modules']['debug'] = [
// 'class' => 'yii\debug\Module',
// // uncomment the following to add your IP if you are not connecting from localhost.
// //'allowedIPs' => ['127.0.0.1', '::1'],
// ];
// $config['bootstrap'][] = 'gii';
// $config['modules']['gii'] = [
// 'class' => 'yii\gii\Module',
// // uncomment the following to add your IP if you are not connecting from localhost.
// //'allowedIPs' => ['127.0.0.1', '::1'],
// ];
}
return $config;