summaryrefslogtreecommitdiff
path: root/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'app.js')
-rw-r--r--app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.js b/app.js
index 69abdd8..d4461db 100644
--- a/app.js
+++ b/app.js
@@ -20,7 +20,7 @@ mongoose.connection.on('error', function(err) {
// persistence (for sessions)
app.use(session({
- secret: 'Very secret',
+ secret: config.session_secret,
store: new MongoStore({ mongooseConnection: mongoose.connection }),
name: 'rvssid',
saveUninitialized: false,