Im using connect-mongo in my ExpressJS apps.
app.use(express.session({
secret: 'some string',
store: new MongoStore({
db: mongoose.connection.db
})
}));
What are the other options for session to make the application secure? Im not using https
.