Browse Source
Server.js: remove cookie setting
Proxy is recommended else use only internally
pull/929/head
Philip H
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
0 additions and
3 deletions
-
src/lib/Server.js
|
@ -33,9 +33,6 @@ module.exports = class Server { |
|
|
secret: crypto.randomBytes(256).toString('hex'), |
|
|
secret: crypto.randomBytes(256).toString('hex'), |
|
|
resave: true, |
|
|
resave: true, |
|
|
saveUninitialized: true, |
|
|
saveUninitialized: true, |
|
|
cookie: { |
|
|
|
|
|
httpOnly: true, |
|
|
|
|
|
}, |
|
|
|
|
|
})) |
|
|
})) |
|
|
|
|
|
|
|
|
.get('/api/release', (Util.promisify(async () => { |
|
|
.get('/api/release', (Util.promisify(async () => { |
|
|