diff options
Diffstat (limited to '')
| -rw-r--r-- | src/web/_views/head.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/_views/head.php b/src/web/_views/head.php index 4d16a1b..281ebc5 100644 --- a/src/web/_views/head.php +++ b/src/web/_views/head.php @@ -7,7 +7,7 @@ if (ENVIRONMENT == 'production' && !in_array($current_app, $non_cached_apps)) { $cache_seconds = 300; if ($current_app == 'bucket') { - $cache_seconds = 3600; + $cache_seconds = 86400; } header("Cache-Control: public, max-age=$cache_seconds"); header("Expires: " . gmdate('D, d M Y H:i:s', time() + $cache_seconds) . " UTC"); |