Skip to content

Commit

Permalink
Merge pull request #15 from PetQ-A/Feature/JPA-auditing
Browse files Browse the repository at this point in the history
Fix: JWT health check 회피 추가
  • Loading branch information
dong99u authored Jul 30, 2024
2 parents 83a1b94 + 9808db7 commit 021217a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/petqa/base/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ public static Cookie createCookie(String key, String value) {

Cookie cookie = new Cookie(key, value);
cookie.setMaxAge(24 * 60 * 60);
// cookie.setSecure(true);
// cookie.setPath("/");
cookie.setSecure(true);
cookie.setPath("/");
cookie.setHttpOnly(true);

return cookie;
Expand Down

0 comments on commit 021217a

Please sign in to comment.