fitness-web/environments/cutlergyor/apache2/common/config/main-local.php
2022-04-23 20:45:12 +02:00

28 lines
830 B
PHP

<?php
return [
'components' => [
'db' => [
'class' => 'yii\db\Connection',
// 'dsn' => 'mysql:host=fitnessadmin.hu;dbname=cutler_prod',
'dsn' => 'mysql:host=172.17.0.1;dbname=cutler_prod',
//'dsn' => 'mysql:host=92.119.120.214;dbname=cutler_prod',
'username' => 'cutlerweb',
'password' => 'cutler2016!',
'charset' => 'utf8',
],
'mailer' => [
'class' => 'yii\swiftmailer\Mailer',
'viewPath' => '@common/mail',
'useFileTransport' =>false,
'transport' => [
'class' => 'Swift_SmtpTransport',
'host' => 'smtp.websiter.hu',
'username' => 'info@rocho-net.hu',
'password' => 'botond2015',
'port' => '25',
],
],
],
];