A base local settings file for Drupal sites.
This file contains 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
<?php | |
$databases = array(); | |
$base_url = ''; | |
$conf['site_name'] = ''; | |
// Display all messages. | |
// $conf['error_level'] = 2; | |
// Disable caching. | |
// $conf['cache'] = 0; | |
// $conf['block_cache'] = 0; | |
// $conf['cache_lifetime'] = 0; | |
// $conf['page_cache_maximum_age'] = 0; | |
// $conf['preprocess_css'] = 0; | |
// $conf['preprocess_js'] = 0; | |
// Mail rerouting. | |
// $conf['reroute_email_enable'] = 1; | |
// $conf['reroute_email_enable_message'] = 1; | |
// $conf['reroute_email_address'] = ''; | |
// $conf['reroute_email_address'] = implode(';', array()); | |
// File proxy. | |
// $conf['stage_file_proxy_origin'] = 'http://www.example.com'; | |
// $conf['stage_file_proxy_origin'] = 'http://username:password@www.example.com'; | |
// $conf['stage_file_proxy_hotlink'] = TRUE; | |
// $conf['stage_file_proxy_use_imagecache_root'] = FALSE; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment