Add more configuration options for redis

- `REDIS_HOST` can be specified in the secrets
- Two new secrets: `REDIS_PASSWD` and `REDIS_DB`
This commit is contained in:
Martin Pépin 2017-04-24 21:27:01 +01:00
parent a0fe94e2f4
commit 2aee43e01a
3 changed files with 14 additions and 7 deletions

View file

@ -1,4 +1,7 @@
SECRET_KEY = 'q()(zn4m63i%5cp4)f+ww4-28_w+ly3q9=6imw2ciu&_(5_4ah'
RECAPTCHA_PUBLIC_KEY = "DUMMY"
RECAPTCHA_PRIVATE_KEY = "DUMMY"
REDIS_PASSWD = "dummy"
REDIS_DB = 0
REDIS_HOST = "127.0.0.1"
ADMINS = None