Skip to content

Commit

Permalink
[HOTFIX] SECURE설정 개발환경(false)으로 임시변경
Browse files Browse the repository at this point in the history
  • Loading branch information
seokjun01 committed Jan 13, 2025
1 parent 2bd9a8a commit d452a57
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class OAuthLoginSuccessHandler implements AuthenticationSuccessHandler {
private final JwtService jwtService;

private static final boolean COOKIE_HTTP_ONLY = true;
private static final boolean COOKIE_SECURE = true; //https 환경에서는 true
private static final boolean COOKIE_SECURE = false; //https 환경에서는 true
private static final String COOKIE_PATH = "/";
private static final int ACCESS_TOKEN_MAX_AGE = 60 * 60; // 1시간
private static final int REFRESH_TOKEN_MAX_AGE = 60 * 60 * 24 * 7; // 7일
Expand Down

0 comments on commit d452a57

Please sign in to comment.