Demo: comment out session store

This commit is contained in:
Erik Römmelt 2019-07-24 16:12:04 +02:00
parent 6a69bbcaf7
commit dda5e89990

View File

@ -60,10 +60,10 @@ app.use(session({
secure: true, // true for https only (since our app works only with https)
},
name: 'om.sid',
store: new MongoStore({
mongooseConnection: mong.connection,
ttl: 30 * 24 * 3600,
}), // mongoose + connect-mongo
// store: new MongoStore({
// mongooseConnection: mong.connection,
// ttl: 30 * 24 * 3600,
// }), // mongoose + connect-mongo
//store: new MemoryStore ({checkPeriod: 24*3600*1000}), // memorystore
}));