apc-primer
Create a config.php:
if (!defined('DS')) {
define('DS', DIRECTORY_SEPARATOR);
}
return [
/* HTTP Basic Authentication: NOT RECOMMENDED */
'auth' => [
'enabled' => true,
'username' => 'admin',
'password' => 'changeme',
],
/* Paths to cache (recursively) */
'paths' => [
__DIR__ .DS. '..' .DS. '..' .DS. '..' .DS. 'config',
__DIR__ .DS. '..' .DS. '..' .DS. '..' .DS. 'module',
__DIR__ .DS. '..' .DS. '..' .DS. '..' .DS. 'vendor',
__DIR__ .DS. '..' .DS. '..' .DS. '..' .DS. 'public',
]
];