Skip to content

Commit

Permalink
chore: roll back to cookie secure as true
Browse files Browse the repository at this point in the history
  • Loading branch information
JIUNG9 committed Jan 17, 2024
1 parent 8b92bc1 commit 758fdb4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public static Cookie createCookie(String name, String value, int maxAge,String d
cookie.setMaxAge(maxAge);
cookie.setPath("/");
cookie.setDomain(domain);
cookie.setSecure(false);
cookie.setSecure(true);
cookie.setHttpOnly(true);
return cookie;
}
Expand Down

0 comments on commit 758fdb4

Please sign in to comment.