summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mulk/benki/main.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mulk/benki/main.clj b/src/mulk/benki/main.clj
index f89c9df..9076104 100644
--- a/src/mulk/benki/main.clj
+++ b/src/mulk/benki/main.clj
@@ -31,7 +31,7 @@
(let [response (handler request)]
(if (get-in response [:headers "Cache-Control"])
response
- (assoc-in response [:headers "Cache-Control"] "no-store")
+ (assoc-in response [:headers "Cache-Control"] "no-cache")
;; no-cache, no-store, must-revalidate
;; Which one is the most appropriate?
;; (is must-revalidate even valid for server responses?)