Add default site files
This commit is contained in:
parent
1634a505db
commit
bd20ea243d
2 changed files with 42 additions and 0 deletions
web/sites/default
15
web/sites/default/settings.php
Normal file
15
web/sites/default/settings.php
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
$databases['default']['default'] = [
|
||||
'driver' => $_SERVER['DATABASE_DRIVER'],
|
||||
'host' => $_SERVER['DATABASE_HOST'],
|
||||
'database' => $_SERVER['DATABASE_NAME'],
|
||||
'username' => $_SERVER['DATABASE_USER'],
|
||||
'password' => $_SERVER['DATABASE_PASSWORD'],
|
||||
'port' => $_SERVER['DATABASE_PORT'],
|
||||
'prefix' => '',
|
||||
'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql',
|
||||
'collation' => 'utf8mb4_general_ci',
|
||||
];
|
||||
|
||||
$settings["config_sync_directory"] = '../config/default';
|
Loading…
Add table
Add a link
Reference in a new issue