Skip to content

Instantly share code, notes, and snippets.

@dance2die
Created January 29, 2018 21:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dance2die/1f214f773f0661f8e3ac6f5a4327400d to your computer and use it in GitHub Desktop.
Save dance2die/1f214f773f0661f8e3ac6f5a4327400d to your computer and use it in GitHub Desktop.
cookie.secure => 'auto'
app.use(
session({
secret: "some secret",
resave: true,
saveUninitialized: true,
cookie: {
secure: 'auto'
}
})
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment