Change in Cache-Control header

This commit is contained in:
Luc Didry
2014-05-01 18:38:35 +02:00
parent 6e9a8a79c8
commit 2a7cb615ba

View File

@@ -58,7 +58,7 @@ sub startup {
my $headers = Mojo::Headers->new();
if ($nocache) {
$headers->add('Cache-Control' => 'no-cache');
$headers->add('Cache-Control' => 'no-cache, no-store');
} else {
$headers->add('Expires' => $expires);
}