Skip to content

Commit

Permalink
Merge pull request #218 from 1223v/test
Browse files Browse the repository at this point in the history
Fix: cookie 도메인 수정
  • Loading branch information
1223v authored Mar 24, 2024
2 parents b596f1c + 15dd287 commit 08ab8b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public void addTokenCookie(HttpServletResponse response, String name, String val
Cookie cookie = new Cookie(name, value);
cookie.setHttpOnly(httpOnly);
cookie.setPath(path);
cookie.setDomain(jwtConfig.getCookieDomain());
//cookie.setDomain(jwtConfig.getCookieDomain());
cookie.setMaxAge(maxAge);
response.addCookie(cookie);

Expand Down

0 comments on commit 08ab8b9

Please sign in to comment.