/ _caddy.json
_caddy.json
 1  {
 2    "apps": {
 3      "http": {
 4        "servers": {
 5          "example": {
 6            "listen": [":2015"],
 7            "routes": [
 8              {
 9                "handle": [{
10                  "handler": "static_response",
11                  "body": "Hello, world!"
12                }]
13              }
14            ]
15          }
16        }
17      }
18    }
19  }