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:
Sheogorath 2019-03-04 16:59:32 +01:00
parent 126cd1b1f0
commit 32a1afbe86
No known key found for this signature in database
GPG key ID: 1F05CC3635CDDFFD

View file

@ -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
}, },