Tiago Araujo
Tiago Araujo
This is happening to me too! The default one is applied! I'm using the session with Mongo store as well, and no matter the changes to the options is always...
@dougwilson In my case I have this code ```js const options = { secret: process.env.SESSION_SECRET, resave: false, saveUninitialized: true, store: new MongoStore({ mongooseConnection: mongoose.connection, collection: 'session' }), cookie: { secure:...
@dougwilson The problem is the secure flag is not set in the requests. no matter what code I do even if I remove the IF and set `secure = true`...