Stop overriding the config path
This commit is contained in:
parent
b94c0ac1a6
commit
314ba711af
|
@ -22,8 +22,8 @@ drupal_settings:
|
|||
- drupal_root: '{{ release_web_path }}'
|
||||
sites:
|
||||
- name: default
|
||||
filename: settings.local.php
|
||||
settings:
|
||||
base_url: http://d8.oliverdavies.uk
|
||||
hash_salt: '{{ app_hash_salt }}'
|
||||
databases:
|
||||
default:
|
||||
|
@ -33,8 +33,6 @@ drupal_settings:
|
|||
database: oliverdavies_uk
|
||||
username: '{{ app_mysql_user }}'
|
||||
password: '{{ app_mysql_password }}'
|
||||
config_directories:
|
||||
sync: ../config/sync
|
||||
trusted_hosts:
|
||||
- '^d8\.oliverdavies\.uk$'
|
||||
extra_parameters: |
|
||||
|
|
|
@ -761,3 +761,7 @@ $settings["config_sync_directory"] = '../config/default';
|
|||
if (isset($_SERVER['SYMFONY_DEFAULT_ROUTE_URL']) && file_exists(__DIR__ . '/environments/settings.symfony.php')) {
|
||||
require_once __DIR__ . '/environments/settings.symfony.php';
|
||||
}
|
||||
|
||||
if (file_exists($app_root . '/' . $site_path . '/settings.local.php')) {
|
||||
include $app_root . '/' . $site_path . '/settings.local.php';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue