Skip to content

Commit

Permalink
fix : cookie secure 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
LJH098 committed Feb 26, 2024
1 parent 6c638a2 commit ebd5e90
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
public class SecurityUtils {
public static ResponseCookie setLocalCookie(String name, String value) {
return ResponseCookie.from(name, value)
.secure(true)
.sameSite("None")
.httpOnly(true)
.maxAge(2592000)
Expand Down

0 comments on commit ebd5e90

Please sign in to comment.