Add session data to env vars
Currently the session secret can only be set by config.json or docker secrets. This creates a problem on Heroku hosted instances that can not set a session secret. Since we automatically generate them on startup this results in an logout of all users on every config change in Heroku. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
This commit is contained in:
parent
d2cce7638a
commit
30b5ff0d96
3 changed files with 8 additions and 0 deletions
|
@ -151,6 +151,8 @@ There are some config settings you need to change in the files below.
|
||||||
| `HMD_ALLOW_FREEURL` | `true` or `false` | set to allow new note creation by accessing a nonexistent note URL |
|
| `HMD_ALLOW_FREEURL` | `true` or `false` | set to allow new note creation by accessing a nonexistent note URL |
|
||||||
| `HMD_DEFAULT_PERMISSION` | `freely`, `editable`, `limited`, `locked` or `private` | set notes default permission (only applied on signed users) |
|
| `HMD_DEFAULT_PERMISSION` | `freely`, `editable`, `limited`, `locked` or `private` | set notes default permission (only applied on signed users) |
|
||||||
| `HMD_DB_URL` | `mysql://localhost:3306/database` | set the database URL |
|
| `HMD_DB_URL` | `mysql://localhost:3306/database` | set the database URL |
|
||||||
|
| `HMD_SESSION_SECRET` | no example | Secret used to sign the session cookie. If non is set, one will randomly generated on startup |
|
||||||
|
| `HMD_SESSION_LIFE` | `1209600000` | Session life time. (milliseconds) |
|
||||||
| `HMD_FACEBOOK_CLIENTID` | no example | Facebook API client id |
|
| `HMD_FACEBOOK_CLIENTID` | no example | Facebook API client id |
|
||||||
| `HMD_FACEBOOK_CLIENTSECRET` | no example | Facebook API client secret |
|
| `HMD_FACEBOOK_CLIENTSECRET` | no example | Facebook API client secret |
|
||||||
| `HMD_TWITTER_CONSUMERKEY` | no example | Twitter API consumer key |
|
| `HMD_TWITTER_CONSUMERKEY` | no example | Twitter API consumer key |
|
||||||
|
|
4
app.json
4
app.json
|
@ -23,6 +23,10 @@
|
||||||
"description": "Specify database type. See sequelize available databases. Default using postgres",
|
"description": "Specify database type. See sequelize available databases. Default using postgres",
|
||||||
"value": "postgres"
|
"value": "postgres"
|
||||||
},
|
},
|
||||||
|
"HMD_SESSION_SECRET": {
|
||||||
|
"description": "Secret used to secure session cookies.",
|
||||||
|
"required": false
|
||||||
|
},
|
||||||
"HMD_HSTS_ENABLE": {
|
"HMD_HSTS_ENABLE": {
|
||||||
"description": "whether to also use HSTS if HTTPS is enabled",
|
"description": "whether to also use HSTS if HTTPS is enabled",
|
||||||
"required": false
|
"required": false
|
||||||
|
|
|
@ -26,6 +26,8 @@ module.exports = {
|
||||||
allowFreeURL: toBooleanConfig(process.env.HMD_ALLOW_FREEURL),
|
allowFreeURL: toBooleanConfig(process.env.HMD_ALLOW_FREEURL),
|
||||||
defaultPermission: process.env.HMD_DEFAULT_PERMISSION,
|
defaultPermission: process.env.HMD_DEFAULT_PERMISSION,
|
||||||
dbURL: process.env.HMD_DB_URL,
|
dbURL: process.env.HMD_DB_URL,
|
||||||
|
sessionSecret: process.env.HMD_SESSION_SECRET,
|
||||||
|
sessionLife: toIntegerConfig(process.env.HMD_SESSION_LIFE),
|
||||||
imageUploadType: process.env.HMD_IMAGE_UPLOAD_TYPE,
|
imageUploadType: process.env.HMD_IMAGE_UPLOAD_TYPE,
|
||||||
imgur: {
|
imgur: {
|
||||||
clientID: process.env.HMD_IMGUR_CLIENTID
|
clientID: process.env.HMD_IMGUR_CLIENTID
|
||||||
|
|
Loading…
Reference in a new issue