Skip to content

Instantly share code, notes, and snippets.

@egobude
Created May 15, 2015 08:02
Show Gist options
  • Save egobude/c7e95f019445efe47aa7 to your computer and use it in GitHub Desktop.
Save egobude/c7e95f019445efe47aa7 to your computer and use it in GitHub Desktop.
Shopware Config
<?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