mirror of
https://github.com/status-im/codimd.git
synced 2025-02-03 03:03:38 +00:00
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
@ -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…
x
Reference in New Issue
Block a user