Hello, I'm getting this error message:  In my middleware, I'm using the session like this: ``` app.use(session({ cookieName: 'session', encryptionAlgorithm: 'aes256', encryptionKey: new Buffer.from(process.env.SESSION_SECRET1), signatureAlgorithm: 'sha256-drop128', signatureKey: new Buffer.from(process.env.SESSION_SECRET2, 'base64'), duration: 3600000, cookie: { path: '/', httpOnly: true, secureProxy: true } })) ``` I'm using Cloudflare's SSL (flexible mode), so the "secure" option does not work for me. What should I do to get this message out? Thanks!
Hello,
I'm getting this error message:
In my middleware, I'm using the session like this:
I'm using Cloudflare's SSL (flexible mode), so the "secure" option does not work for me. What should I do to get this message out? Thanks!