gist/app/bootstrap.php.d/80-cache.php

9 lines
200 B
PHP
Raw Normal View History

2018-08-20 16:40:04 +02:00
<?php
use Silex\Provider\HttpCacheServiceProvider;
$app->register(new HttpCacheServiceProvider(), array(
'http_cache.cache_dir' => $app['root_path'].'/cache/',
2018-08-20 17:05:36 +02:00
'http_cache.esi' => null,
2018-08-20 16:40:04 +02:00
));