fix email setup problem in default config

This commit is contained in:
Dario Rekowski on RockPI 2021-06-07 14:26:08 +00:00
parent 2c2417a3f1
commit d842884490

View File

@ -214,9 +214,8 @@ return [
'timeout' => 30, 'timeout' => 30,
'username' => null, 'username' => null,
'password' => null, 'password' => null,
'client' => null, 'className' => 'Smtp',
'tls' => null, 'tls' => true
'url' => env('EMAIL_TRANSPORT_DEFAULT_URL', null),
], ],
], ],
@ -304,11 +303,11 @@ return [
'className' => Connection::class, 'className' => Connection::class,
'driver' => Mysql::class, 'driver' => Mysql::class,
'persistent' => false, 'persistent' => false,
'host' => 'localhost', 'host' => 'mariadb',
//'port' => 'non_standard_port_number', //'port' => 'non_standard_port_number',
'username' => 'my_app', 'username' => 'root',
'password' => 'secret', 'password' => '',
'database' => 'test_myapp', 'database' => 'gradido_community_test',
//'encoding' => 'utf8mb4', //'encoding' => 'utf8mb4',
'timezone' => 'UTC', 'timezone' => 'UTC',
'cacheMetadata' => true, 'cacheMetadata' => true,