-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.php
More file actions
28 lines (23 loc) · 849 Bytes
/
Copy pathsettings.php
File metadata and controls
28 lines (23 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
// Use druidfi/omen to auto-configure Drupal
//
// You can setup project specific configuration in this directory:
//
// ENV.settings.php and ENV.services.yml
// and
// local.settings.php and local.services.yml. Note: local.* should not be added to version control.
//
// These files are loaded automatically if found.
//
extract(Druidfi\Omen\Reader::get(get_defined_vars()));
// Here you can still override things
/**
* Only in Wodby environment. @see https://wodby.com/docs/1.0/stacks/drupal/#overriding-settings-from-wodbysettingsphp
* Can be removed if not using Wodby.
*/
if (isset($_SERVER['WODBY_APP_NAME'])) {
// To include won't be added automatically if it's already there.
include '/var/www/conf/wodby.settings.php';
// Override setting from wodby.settings.php.
$settings['config_sync_directory'] = '../conf/cmi';
}