Add local.settings.php to every instance
This commit adds a new file 'local.settings.php' to each distillery instance. This file can be used to automatically edit global distillery settings.
This commit is contained in:
parent
6eab3ac311
commit
24ff81f7cd
13 changed files with 98 additions and 42 deletions
16
internal/wisski/ingredient/barrel/local.settings.php
Normal file
16
internal/wisski/ingredient/barrel/local.settings.php
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
// Use this file to manually tweak setttings of this instance in an update-agnostic way.
|
||||
// This file will not be updated by future distillery updates.
|
||||
//
|
||||
// The settings.php file contains settings in the following order:
|
||||
//
|
||||
// - settings generated by the drupal installer
|
||||
// - global distillery settings files
|
||||
// - distillery generated configuration files
|
||||
// - this file
|
||||
//
|
||||
// Because of caching, changes may require an instance restart to take effect.
|
||||
|
||||
// // e.g. to turn on verbose logging, uncomment the following line:
|
||||
// $config["system.logging"]["error_level"] = "verbose";
|
||||
Loading…
Add table
Add a link
Reference in a new issue