🔨 Makes log_level optional

This commit is contained in:
Franck Nijhof 2019-03-31 18:29:49 +02:00
parent 3ca48fd7ad
commit 174dc04e8d
No known key found for this signature in database
GPG key ID: D62583BA8AB11CA3

View file

@ -23,14 +23,13 @@
"ssl"
],
"options": {
"log_level": "info",
"port": 8072,
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?",
"port": "port",
"ssl": "bool",
"certfile": "str",