From 2a7cb615ba13bc4dde09b1acd8d90a63c4c130ea Mon Sep 17 00:00:00 2001 From: Luc Didry Date: Thu, 1 May 2014 18:38:35 +0200 Subject: [PATCH] Change in Cache-Control header --- lib/Lutim.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Lutim.pm b/lib/Lutim.pm index 5845de3..7c6bbfb 100644 --- a/lib/Lutim.pm +++ b/lib/Lutim.pm @@ -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); }