安装
- brew install caddy
运行
- caddy run
新增 配置
- 将如下内容写入到 caddy.json
{ "apps": { "http": { "servers": { "example": { "listen": [":2015"], "routes": [ { "handle": [{ "handler": "static_response", "body": "Hello, world!" }] } ] } } } } }
写入配置并生效
curl localhost:2019/load \
-H "Content-Type: application/json" \
-d @caddy.json
查看配置
http://127.0.0.1:2019/config/
or
curl http://127.0.0.1:2019/config/ |jq
查看运行结果
http://127.0.0.1:2015/
or
curl http://127.0.0.1:2015/