From e915ec33eef9cb92a847d7f67227eab63dec9abc Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Tue, 25 Mar 2025 21:40:45 +0800 Subject: handler: Add Path: "/" for the cookie If the user encounters a Powxy challenge while not on the root directory, then the cookie will only be set for the current subtree. An explicit path=/ is required in the cookie to make it apply across the entire site. --- handler.go | 1 + 1 file changed, 1 insertion(+) diff --git a/handler.go b/handler.go index 85dbdc5..4348cb6 100644 --- a/handler.go +++ b/handler.go @@ -166,6 +166,7 @@ func handler(writer http.ResponseWriter, request *http.Request) { Value: base64.StdEncoding.EncodeToString(expectedMAC), Secure: true, HttpOnly: true, + Path: "/", }) slog.Info("accepted proof of work", -- cgit v1.2.3