We're creating a web app in node.js. For this we're following this example to see how things are done. Whenever we work with an express-session there is a credential pop-up displayed when accessing the page in the browser.
app.use(session({
proxy: true,
secret: 'keyboard cat',
resave: false,
saveUninitialized: false,
rolling: true,
name: 'sid',
cookie: {
maxAge: 20 * 60 * 1000
}
}));
Searching the web I found this which talks about setting the proxy setting in the session. However, after trying all options we still get the pop-up. Installing stuff through npm works fine without issue, even loading pages where no express-session are used.
How can we avoid this pop-up? Thank you for your help.
