aboutsummaryrefslogtreecommitdiff
path: root/app.json
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-18 21:41:50 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-18 21:41:50 +0100
commita2336c5de836267a4e88961422fc3f26cedab47e (patch)
tree18dbc1fb5d09cba02f5c54cae764f3610570d3ff /app.json
parentfix migration script (diff)
downloadnewspipe-a2336c5de836267a4e88961422fc3f26cedab47e.tar.gz
newspipe-a2336c5de836267a4e88961422fc3f26cedab47e.tar.bz2
newspipe-a2336c5de836267a4e88961422fc3f26cedab47e.zip
we now specify the validity period of the activation link.
Diffstat (limited to 'app.json')
-rw-r--r--app.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/app.json b/app.json
index de17707b..42f9bc93 100644
--- a/app.json
+++ b/app.json
@@ -16,7 +16,8 @@
"CDN_ADDRESS": "https://cdn.cedricbonhomme.org/",
"ADMIN_EMAIL": "root@jarr.localhost",
"ADMIN_PASSWORD": "password",
- "SECRET_KEY": "a secret only you know in order to use sessions",
+ "SECRET_KEY": "a secret token only you know in order to use sessions",
+ "TOKEN_VALIDITY_PERIOD": 3600,
"SECURITY_PASSWORD_SALT": "a secret to confirm user account",
"NOTIFICATION_EMAIL": "JARR@no-reply.com",
"RECAPTCHA_PRIVATE_KEY": "REDACTED",
bgstack15