gist/app/bootstrap.php.d/80-cache.php
2018-08-20 17:05:36 +02:00

9 lines
200 B
PHP

<?php
use Silex\Provider\HttpCacheServiceProvider;
$app->register(new HttpCacheServiceProvider(), array(
'http_cache.cache_dir' => $app['root_path'].'/cache/',
'http_cache.esi' => null,
));