Browse Source

set expiryDate for session (#50)

pull/686/head
Philip H 1 year ago
committed by GitHub
parent
commit
c73e64c9c4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/lib/Server.js

2
src/lib/Server.js

@ -23,6 +23,7 @@ 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')))
@ -33,6 +34,7 @@ module.exports = class Server {
saveUninitialized: true,
cookie: {
httpOnly: true,
expires: expiryDate,
},
}))

Loading…
Cancel
Save