Last active
December 22, 2015 01:49
-
-
Save fidelix/6399342 to your computer and use it in GitHub Desktop.
Production settings file for Drupal
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 ( | |
'default' => | |
array ( | |
'default' => | |
array ( | |
'database' => 'meusite_live', | |
'username' => 'cliente', | |
'password' => 'xxxxx', | |
'host' => 'localhost', | |
'port' => '', | |
'driver' => 'mysql', | |
'prefix' => '', | |
), | |
), | |
); | |
$conf['cache'] = 1; | |
$conf['page_compression'] = 1; | |
$conf['preprocess_css'] = 1; | |
$conf['preprocess_js'] = 1; | |
$conf['block_cache'] = 1; | |
$conf['less_devel'] = FALSE; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment