Skip to content

Commit 32a1afb

Browse files
committed
Fix wrong value type in example config
HSTS maxAge has to be an integer, not a string. Fixes #1159 Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
1 parent 126cd1b commit 32a1afb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config.json.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"loglevel": "info",
2121
"hsts": {
2222
"enable": true,
23-
"maxAgeSeconds": "31536000",
23+
"maxAgeSeconds": 31536000,
2424
"includeSubdomains": true,
2525
"preload": true
2626
},

0 commit comments

Comments
 (0)