mirror of https://github.com/status-im/codimd.git
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",
|
||||
"hsts": {
|
||||
"enable": true,
|
||||
"maxAgeSeconds": "31536000",
|
||||
"maxAgeSeconds": 31536000,
|
||||
"includeSubdomains": true,
|
||||
"preload": true
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue