Skip to content

Commit

Permalink
feat: 쿠키 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
zerosial committed Jan 19, 2024
1 parent c81722e commit f75d6c7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/auth/auth.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ export class AuthController {

res.cookie('refreshToken', refreshToken, {
httpOnly: true,
secure: false, // 개발 환경에서는 false로 설정할 수 있음
sameSite: 'none', // 배포 환경이 달라 임시적으로 none (기본은 strict)
secure: true, // 개발 환경에서는 false로 설정할 수 있음
sameSite: 'strict', // 배포 환경이 달라 임시적으로 none (기본은 strict)
path: '/', // 쿠키 경로 지정
expires: new Date(Date.now() + 7 * 24 * 60 * 60 * 1000), // 예: 1주일 후 만료
});
Expand All @@ -47,8 +47,8 @@ export class AuthController {

res.cookie('refreshToken', refreshToken, {
httpOnly: true,
secure: false, // 개발 환경에서는 false로 설정할 수 있음
sameSite: 'none', // 배포 환경이 달라 임시적으로 none (기본은 strict)
secure: true, // 개발 환경에서는 false로 설정할 수 있음
sameSite: 'strict', // 배포 환경이 달라 임시적으로 none (기본은 strict)
path: '/', // 쿠키 경로 지정
expires: new Date(Date.now() + 7 * 24 * 60 * 60 * 1000), // 예: 1주일 후 만료
});
Expand All @@ -69,8 +69,8 @@ export class AuthController {

res.cookie('refreshToken', newRefreshToken, {
httpOnly: true,
secure: false, // 개발 환경에서는 false로 설정할 수 있음
sameSite: 'none', // 배포 환경이 달라 임시적으로 none (기본은 strict)
secure: true, // 개발 환경에서는 false로 설정할 수 있음
sameSite: 'strict', // 배포 환경이 달라 임시적으로 none (기본은 strict)
path: '/', // 쿠키 경로 지정
expires: new Date(Date.now() + 7 * 24 * 60 * 60 * 1000), // 예: 1주일 후 만료
});
Expand Down

0 comments on commit f75d6c7

Please sign in to comment.