aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-24 23:51:03 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-24 23:51:03 +0800
commiteee8781b676a95005dc98a88f5803e7709b087b4 (patch)
tree103b2d5d28b73b8183de4075e5361eea2353c042
parentLindenii forge contrib stuff (diff)
downloadpowxy-0.1.15.tar.gz
powxy-0.1.15.tar.zst
powxy-0.1.15.zip
Cache-Controlv0.1.15
-rw-r--r--handler.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/handler.go b/handler.go
index f9282fd..8f30c4c 100644
--- a/handler.go
+++ b/handler.go
@@ -59,6 +59,9 @@ func handler(writer http.ResponseWriter, request *http.Request) {
// since all parameters but the message are constant at this
// point.
challengePage := func(message string) {
+ writer.Header().Set("Cache-Control", "no-store, no-cache, must-revalidate, max-age=0, private")
+ writer.Header().Set("Pragma", "no-cache")
+ writer.Header().Set("Expires", "0")
err := tmpl.Execute(writer, tparams{
Identifier: base64.StdEncoding.EncodeToString(identifier),
Message: message,