Created
August 23, 2016 13:16
-
-
Save emtii/fa54a271d827e2a2a9ae0b9f741287be to your computer and use it in GitHub Desktop.
example production config for shopware 5
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 [ | |
// database settings | |
'db' => [ | |
'host' => 'localhost', | |
'port' => '3306', | |
'username' => 'shopware', | |
'password' => 'shopware', | |
'dbname' => 'shopware' | |
], | |
// backend cache | |
'cache' => [ | |
'backend' => 'apc', | |
'backendOptions' => [], | |
'frontendOptions' => [] | |
], | |
// model cache | |
'model' => [ | |
'cacheProvider' => 'Apc' // supports Apc, Array, Wincache and Xcache | |
], | |
// http cache | |
'httpCache' => [ | |
'enabled' => true, | |
'debug' => false | |
] | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment