API

Caddy is configured through an administration endpoint which can be accessed via HTTP using a REST API. You can configure this endpoint in your Caddy config.

Default address: localhost:2019

If you are running untrusted code on your server (yikes 😬), make sure you protect your admin endpoint by isolating processes, patching vulnerable programs, and configuring the endpoint to bind to a permissioned unix socket instead.

The latest configuration will be saved to disk after any changes (unless disabled). You can resume the last working config after a restart with caddy run --resume, which guarantees config durability in the event of a power cycle or similar.

To get started with the API, try our API tutorial or, if you only have a minute, our API quick-start guide.


POST /load

Sets Caddy’s configuration, overriding any previous configuration. It blocks until the reload completes or fails. Configuration changes are lightweight, efficient, and incur zero downtime. If the new config fails for any reason, the old config is rolled back into place without downtime.

This endpoint supports different config formats using config adapters. The request’s Content-Type header indicates the config format used in the request body. Usually, this should be application/json which represents Caddy’s native config format. For another config format, specify the appropriate Content-Type so that the value after the forward slash / is the name of the config adapter to use. For example, when submitting a Caddyfile, use a value like text/caddyfile; or for JSON 5, use a value such as application/json5; etc.

If the new config is the same as the current one, no reload will occur. To force a reload, set Cache-Control: must-revalidate in the request headers.

Examples

Set a new active configuration:

  1. curl -X POST "http://localhost:2019/load" \
  2. -H "Content-Type: application/json" \
  3. -d @caddy.json

Note: curl’s -d flag removes newlines, so if your config format is sensitive to line breaks (e.g. the Caddyfile), use --data-binary instead:

  1. curl -X POST "http://localhost:2019/load" \
  2. -H "Content-Type: text/caddyfile" \
  3. --data-binary @Caddyfile

POST /stop

Gracefully shuts down the server and exits the process. To only stop the running configuration without exiting the process, use DELETE /config/.

Example

Stop the process:

  1. curl -X POST "http://localhost:2019/stop"

GET /config/[path]

Exports Caddy’s current configuration at the named path. Returns a JSON body.

Examples

Export entire config and pretty-print it:

  1. curl "http://localhost:2019/config/" | jq
  2. {
  3. "apps": {
  4. "http": {
  5. "servers": {
  6. "myserver": {
  7. "listen": [
  8. ":443"
  9. ],
  10. "routes": [
  11. {
  12. "match": [
  13. {
  14. "host": [
  15. "example.com"
  16. ]
  17. }
  18. ],
  19. "handle": [
  20. {
  21. "handler": "file_server"
  22. }
  23. ]
  24. }
  25. ]
  26. }
  27. }
  28. }
  29. }
  30. }

Export just the listener addresses:

  1. curl "http://localhost:2019/config/apps/http/servers/myserver/listen"
  2. [":443"]

POST /config/[path]

Changes Caddy’s configuration at the named path to the JSON body of the request. If the destination value is an array, POST appends; if an object, it creates or replaces.

As a special case, many items can be added to an array if:

  1. the path ends in /...
  2. the element of the path before /... refers to an array
  3. the payload is an array

In this case, the elements in the payload’s array will be expanded, and each one will be appended to the destination array. In Go terms, this would have the same effect as:

  1. baseSlice = append(baseSlice, newElems...)

Examples

Add a listener address:

  1. curl -X POST \
  2. -H "Content-Type: application/json" \
  3. -d '":8080"' \
  4. "http://localhost:2019/config/apps/http/servers/myserver/listen"

Add multiple listener addresses:

  1. curl -X POST \
  2. -H "Content-Type: application/json" \
  3. -d '[":8080", ":5133"]' \
  4. "http://localhost:2019/config/apps/http/servers/myserver/listen/..."

PUT /config/[path]

Changes Caddy’s configuration at the named path to the JSON body of the request. If the destination value is a position (index) in an array, PUT inserts; if an object, it strictly creates a new value.

Example

Add a listener address in the first slot:

  1. curl -X PUT \
  2. -H "Content-Type: application/json" \
  3. -d '":8080"' \
  4. "http://localhost:2019/config/apps/http/servers/myserver/listen/0"

PATCH /config/[path]

Changes Caddy’s configuration at the named path to the JSON body of the request. PATCH strictly replaces an existing value or array element.

Example

Replace the listener addresses:

  1. curl -X PATCH \
  2. -H "Content-Type: application/json" \
  3. -d '[":8081", ":8082"]' \
  4. "http://localhost:2019/config/apps/http/servers/myserver/listen"

DELETE /config/[path]

Removes Caddy’s configuration at the named path. DELETE deletes the target value.

Examples

To unload the entire current configuration but leave the process running:

  1. curl -X DELETE "http://localhost:2019/config/"

To stop only one of your HTTP servers:

  1. curl -X DELETE "http://localhost:2019/config/apps/http/servers/myserver"

Using @id in JSON

You can embed IDs in your JSON document for easier direct access to those parts of the JSON.

Simply add a field called "@id" to an object and give it a unique name. For example, if you had a reverse proxy handler that you wanted to access frequently:

  1. {
  2. "@id": "my_proxy",
  3. "handler": "reverse_proxy"
  4. }

To use it, simply make a request to the /id/ API endpoint in the same way you would to the corresponding /config/ endpoint, but without the whole path. The ID takes the request directly into that scope of the config for you.

For example, to access the upstreams of the reverse proxy without an ID, the path would be something like

  1. /config/apps/http/servers/myserver/routes/1/handle/0/upstreams

but with an ID, the path becomes

  1. /id/my_proxy/upstreams

which is much easier to remember and write by hand.