Disable secure cookie
This commit is contained in:
parent
22015044a5
commit
d2e0faa533
@ -8,7 +8,9 @@ export default function(ctx: Koa.Context, user: ILocalUser, redirect = false) {
|
|||||||
ctx.cookies.set('i', user.token, {
|
ctx.cookies.set('i', user.token, {
|
||||||
path: '/',
|
path: '/',
|
||||||
domain: config.hostname,
|
domain: config.hostname,
|
||||||
secure: config.url.startsWith('https'),
|
// SEE: https://github.com/koajs/koa/issues/974
|
||||||
|
//secure: config.url.startsWith('https'),
|
||||||
|
secure: false,
|
||||||
httpOnly: false,
|
httpOnly: false,
|
||||||
expires: new Date(Date.now() + expires),
|
expires: new Date(Date.now() + expires),
|
||||||
maxAge: expires
|
maxAge: expires
|
||||||
|
Loading…
Reference in New Issue
Block a user