summaryrefslogtreecommitdiff
path: root/config.json.example
diff options
context:
space:
mode:
authorSheogorath2019-03-04 16:59:32 +0100
committerSheogorath2019-03-04 16:59:44 +0100
commit32a1afbe86a8c94fd3bcf8374f77aac3bf80d69e (patch)
tree162528c56b7d52ba1300ccc41a8ae0dc8e5bb430 /config.json.example
parent126cd1b1f0e21f35a2148eda6171a1826c788708 (diff)
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>
Diffstat (limited to 'config.json.example')
-rw-r--r--config.json.example2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.json.example b/config.json.example
index fe8c810c..cb2bf3a5 100644
--- a/config.json.example
+++ b/config.json.example
@@ -20,7 +20,7 @@
"loglevel": "info",
"hsts": {
"enable": true,
- "maxAgeSeconds": "31536000",
+ "maxAgeSeconds": 31536000,
"includeSubdomains": true,
"preload": true
},