Skip to content

Commit

Permalink
Merge pull request #203 from Soongsil-CoffeeChat/feat/#177
Browse files Browse the repository at this point in the history
cookie 생성 도메인 변경
  • Loading branch information
KimKyoHwee authored Jan 2, 2025
2 parents 1c2f574 + 74cc1d6 commit 24d9f95
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ private void addSameSiteCookie(HttpServletResponse response, String name, String
.httpOnly(true)
.secure(true)
.maxAge(24 * 60 * 60)
.domain("coffeego-ssu.web.app") // 정확한 도메인 설정
.domain(".coffeego-ssu.web.app")
.path("/")
.sameSite("None")
.build();
Expand Down

0 comments on commit 24d9f95

Please sign in to comment.