Last active
August 29, 2015 14:04
-
-
Save krueschi/bb3e3378661ff56a37b2 to your computer and use it in GitHub Desktop.
Local drupal devel settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Ignore configuration files that may contain sensitive information. | |
sites/*/settings*.php | |
# Do not ignore dev configuration files | |
!sites/*.localhost/settings*.php | |
# Ignore paths that contain user-generated content. | |
sites/*/files | |
sites/*/privatefiles | |
# Ignore temporary and cached files | |
.DS_Store | |
cache/* | |
tmp/* | |
!tmp/.htaccess |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## environment_indicator module settings | |
/* Environment indicator settings */ | |
$conf['environment_indicator_overwrite'] = TRUE; | |
$conf['environment_indicator_overwritten_name'] = 'Development'; | |
$conf['environment_indicator_overwritten_color'] = '#d10000'; | |
$conf['environment_indicator_overwritten_position'] = 'top'; | |
/* End environment indicator settings */ | |
## stage_file_proxy module settings | |
/* Stage file proxy settings */ | |
$conf['stage_file_proxy_origin'] = 'http://[YOURDOMAIN]'; // insert real domain | |
$conf['stage_file_proxy_use_imagecache_root'] = TRUE; | |
$conf['stage_file_proxy_hotlink'] = TRUE; // no file copy but redirecting | |
$conf['stage_file_proxy_origin_dir'] = 'sites/default/files'; // change for multisites | |
/* | |
* Development file settings | |
* to prevent dev desktop to duplicate user files | |
* (Do not use if stage_file_proxy module is enabled!) | |
*/ | |
$conf['file_public_path'] = 'sites/default/files'; | |
$conf['file_private_path'] = 'sites/default/private'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment