Created
May 15, 2015 08:02
-
-
Save egobude/c7e95f019445efe47aa7 to your computer and use it in GitHub Desktop.
Shopware Config
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
<?php | |
return array( | |
'db' => | |
array( | |
'username' => 'xxx', | |
'password' => 'xxx', | |
'host' => 'localhost', | |
'port' => '3306', | |
'dbname' => 'xxx', | |
), | |
'template' => array( | |
'forceCompile' => FALSE, | |
), | |
'cache' => array( | |
'backend' => 'apc', | |
'backendOptions' => array(), | |
'frontendOptions' => array(), | |
), | |
'model' => array( | |
'cacheProvider' => 'Apc' | |
), | |
'httpCache' => array( | |
'enabled' => FALSE, | |
'cache_dir' => $this->DocPath('cache_html'), | |
'debug' => FALSE, | |
'stale_if_error' => TRUE, | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment