Make session cookie HttpOnly and Secure

This commit is contained in:
Maximilian 2022-11-01 17:59:18 -05:00
parent 967e918df1
commit 92529640d6

View File

@ -126,6 +126,8 @@ func createSessionCookie(app *app.App, w http.ResponseWriter, username string) (
Value: token,
Path: "/",
MaxAge: 86400,
HttpOnly: true,
Secure: true,
}
http.SetCookie(w, cookie)