Oliver Davies
2bc3d582e9
As there's only one domain for this project, using http://localhost will fine.
17 lines
350 B
PHP
17 lines
350 B
PHP
<?php
|
|
|
|
$databases['default']['default'] = [
|
|
'driver' => 'mysql',
|
|
'host' => 'mysql',
|
|
'database' => getenv('MYSQL_DATABASE'),
|
|
'username' => getenv('MYSQL_USER'),
|
|
'password' => getenv('MYSQL_PASSWORD'),
|
|
'port' => '3306',
|
|
'prefix' => '',
|
|
'collation' => 'utf8mb4_general_ci',
|
|
];
|
|
|
|
$settings['trusted_host_patterns'] = [
|
|
'^localhost$',
|
|
];
|