From 32a1afbe86a8c94fd3bcf8374f77aac3bf80d69e Mon Sep 17 00:00:00 2001 From: Sheogorath Date: Mon, 4 Mar 2019 16:59:32 +0100 Subject: [PATCH] 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 --- config.json.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.json.example b/config.json.example index fe8c810..cb2bf3a 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 },