Skip to content

Instantly share code, notes, and snippets.

@fidelix
Last active December 22, 2015 01:49
Show Gist options
  • Save fidelix/6399342 to your computer and use it in GitHub Desktop.
Save fidelix/6399342 to your computer and use it in GitHub Desktop.
Production settings file for Drupal
<?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