Skip to content

Commit

Permalink
domain 값 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
HwangHoYoon committed Jan 20, 2024
1 parent 0818bf0 commit 8fbd1e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/chwipoClova/common/utils/JwtUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public void setHeaderRefreshToken(HttpServletResponse response, String refreshTo
public void setCookieRefreshToken(HttpServletResponse response, String refreshToken) {
ResponseCookie responseCookie = ResponseCookie.from(REFRESH_TOKEN, refreshToken)
.maxAge(REFRESH_COOKIE_TIME)
//.path("/")
.path("/")
.secure(true)
//.domain(domain)
.sameSite("None")
Expand Down

0 comments on commit 8fbd1e8

Please sign in to comment.