Drupal: Add settings.local.php to main settings.php file. Added local settings to gitignore.

This commit is contained in:
Shawn Kwang 2017-11-01 15:23:04 -05:00
parent da7cbcb04c
commit e201d18f3c
2 changed files with 16 additions and 3 deletions

1
drupal/.gitignore vendored
View File

@ -1 +1,2 @@
sites/all/modules
sites/default/settings.local.php

View File

@ -174,6 +174,18 @@ ini_set('upload_max_filesize', '8MB');
# 'theme_default' => 'minnelli',
# 'anonymous' => 'Visitor',
# );
$conf = array(
'maintenance_theme' => 'einstein',
);
/**
* Load local development override configuration, if available.
*
* Use settings.local.php to override variables on secondary (staging,
* development, etc) installations of this site. Typically used to disable
* caching, JavaScript/CSS compression, re-routing of outgoing emails, and
* other things that should not happen on development and testing sites.
*
* Keep this code block at the end of this file to take full effect.
*/
if (stream_resolve_include_path('settings.local.php')) {
include 'settings.local.php';
}