Skip to content

Commit

Permalink
Use cookie sessions
Browse files Browse the repository at this point in the history
  • Loading branch information
mde committed Aug 23, 2012
1 parent b6b40c7 commit 181a65b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/development.js
Expand Up @@ -22,7 +22,7 @@ var config = {
, hostname: null
, port: 4000
, sessions: {
store: 'memory'
store: 'cookie'
, key: 'sid'
, expiry: 14 * 24 * 60 * 60
}
Expand Down
2 changes: 1 addition & 1 deletion config/production.js
Expand Up @@ -21,7 +21,7 @@ var config = {
, hostname: null
, port: 4000
, sessions: {
store: 'memory'
store: 'cookie'
, key: 'sid'
, expiry: 14 * 24 * 60 * 60
}
Expand Down

0 comments on commit 181a65b

Please sign in to comment.