Skip to content

Commit

Permalink
feat : 쿠키 Secure false 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
sunghyuki committed Jan 25, 2023
1 parent 91c5eb0 commit 03d4bc8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static String extractRefreshToken(HttpServletRequest request) {
public static Cookie setCookieWith(String refreshToken) {
Cookie cookie = new Cookie("refreshToken", refreshToken);
cookie.setMaxAge(REFRESH_TIME);
cookie.setSecure(true);
cookie.setSecure(false);
cookie.setHttpOnly(true);
cookie.setPath("/");
return cookie;
Expand Down

0 comments on commit 03d4bc8

Please sign in to comment.