Skip to content

Instantly share code, notes, and snippets.

@emtii
Created August 23, 2016 13:16
Show Gist options
  • Save emtii/fa54a271d827e2a2a9ae0b9f741287be to your computer and use it in GitHub Desktop.
Save emtii/fa54a271d827e2a2a9ae0b9f741287be to your computer and use it in GitHub Desktop.
example production config for shopware 5
<?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