Skip to content

Commit

Permalink
fix : 프론트 도메인 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
hwangdaesun committed Feb 13, 2025
1 parent 8251c71 commit cbf3ff6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ private void setRefreshTokenCookie(HttpServletResponse response, String refreshT
.httpOnly(true)
.maxAge(REFRESH_TOKEN_EXPIRE_TIME)
.path("/")
.domain("https://www.sbooky.net")
.domain(".sbooky.net")
.build();
response.addHeader(SET_COOKIE, cookie.toString());
}
Expand Down

0 comments on commit cbf3ff6

Please sign in to comment.