Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
Merge pull request #820 from pgrodrigues/master
Browse files Browse the repository at this point in the history
fix default session cookie maxAge
  • Loading branch information
lirantal committed Aug 19, 2015
2 parents 793187c + 3b5e13e commit d6d2b41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/env/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = {
templateEngine: 'swig',
// Session details
// session expiration is set by default to 24 hours
sessionExpiration: 24 * (60 * 1000),
sessionExpiration: 24 * (60 * 60 * 1000),
// sessionSecret should be changed for security measures and concerns
sessionSecret: 'MEAN',
// sessionKey is set to the generic sessionId key used by PHP applications
Expand Down

0 comments on commit d6d2b41

Please sign in to comment.