Server.js: expiryDate prevents login

This commit is contained in:
Philip H 2023-12-17 18:32:04 +01:00 committed by GitHub
commit d1f00b140b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -23,7 +23,6 @@ module.exports = class Server {
constructor() {
// Express
const expiryDate = new Date(Date.now() + 60 * 60 * 1000); // 1 hour
this.app = express()
.disable('etag')
.use('/', express.static(path.join(__dirname, '..', 'www')))
@ -34,7 +33,6 @@ module.exports = class Server {
saveUninitialized: true,
cookie: {
httpOnly: true,
expires: expiryDate,
},
}))