patch https cookies in production
This commit is contained in:
parent
082cf29470
commit
34abfa9d29
1 changed files with 3 additions and 3 deletions
|
@ -13,9 +13,9 @@ const signToken = (res, user) => {
|
|||
return res.cookie('token', token, {
|
||||
expires: new Date(Date.now() + expiration),
|
||||
domain: process.env.DOMAIN,
|
||||
// secure: false, // set to true if your using https
|
||||
httpOnly: true
|
||||
// path: '/api/v1'
|
||||
secure: process.env.NODE_ENV === 'production' ? true : false,
|
||||
httpOnly: true,
|
||||
sameSite: 'Strict'
|
||||
});
|
||||
};
|
||||
module.exports = signToken;
|
Loading…
Reference in a new issue