@@ -116,8 +116,11 @@ func forwardResponseHandlerLogout(md metadata.MD, w http.ResponseWriter) {
http.SetCookie(
w,
&http.Cookie{
- Name: "olivetin-sid-local",
- Value: "",
+ Name: "olivetin-sid-local",
+ MaxAge: 31556952, // 1 year
+ Value: "",
+ HttpOnly: true,
+ Path: "/",
},
)