diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-24 23:51:03 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-24 23:51:03 +0800 |
commit | eee8781b676a95005dc98a88f5803e7709b087b4 (patch) | |
tree | 103b2d5d28b73b8183de4075e5361eea2353c042 | |
parent | Lindenii forge contrib stuff (diff) | |
download | powxy-0.1.15.tar.gz powxy-0.1.15.tar.zst powxy-0.1.15.zip |
Cache-Controlv0.1.15
-rw-r--r-- | handler.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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, |