Move all files to old/drupal/

This commit is contained in:
Oliver Davies 2025-10-02 07:57:25 +01:00
parent 8203e983d5
commit 7d76bf2968
468 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,16 @@
<?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$',
];