Fix wrong value type in example config
HSTS maxAge has to be an integer, not a string. Fixes https://github.com/hackmdio/codimd/issues/1159 Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
This commit is contained in:
parent
126cd1b1f0
commit
32a1afbe86
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@
|
||||||
"loglevel": "info",
|
"loglevel": "info",
|
||||||
"hsts": {
|
"hsts": {
|
||||||
"enable": true,
|
"enable": true,
|
||||||
"maxAgeSeconds": "31536000",
|
"maxAgeSeconds": 31536000,
|
||||||
"includeSubdomains": true,
|
"includeSubdomains": true,
|
||||||
"preload": true
|
"preload": true
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue