API Tutorial

This tutorial will show you how to use Caddy’s admin API, which makes it possible to automate in a programmable fashion.

Objectives:

  • 🔲 Run the daemon
  • 🔲 Give Caddy a config
  • 🔲 Test config
  • 🔲 Replace active config
  • 🔲 Traverse config
  • 🔲 Use @id tags

Prerequisites:

  • Basic terminal / command line skills
  • Basic JSON experience
  • caddy and curl in your PATH

To start the Caddy daemon, use the run subcommand:

  1. caddy run

Run the daemon

This blocks forever, but what is it doing? At the moment… nothing. By default, Caddy’s configuration (“config”) is blank. We can verify this using the admin API in another terminal:

  1. curl localhost:2019/config/

We can make Caddy useful by giving it a config. One way to do this is by making a POST request to the /load endpoint. Just like any HTTP request, there are many ways to do this, but in this tutorial we’ll use curl.

Your first config

To prepare our request, we need to make a config. Caddy’s configuration is simply a JSON document (or anything that converts to JSON).

Config files are not required. The configuration API can always be used without files, which is handy when automating things. This tutorial uses a file because it is more convenient for editing by hand.

Save this to a JSON file:

  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. }

Then upload it:

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

Make sure you don’t forget the @ in front of your filename; this tells curl you are sending a file.

Give Caddy a config

We can verify that Caddy applied our new config with another GET request:

  1. curl localhost:2019/config/

Test that it works by going to localhost:2015 in your browser or using curl:

  1. curl localhost:2015
  2. Hello, world!

Test config

If you see Hello, world!, then congrats — it’s working! It’s always a good idea to make sure your config works as you expect, especially before deploying into production.

Let’s change our welcome message from “Hello world!” to something a little more motivational: “I can do hard things.” Make this change in your config file, so that the handler object now looks like this:

  1. {
  2. "handler": "static_response",
  3. "body": "I can do hard things."
  4. }

Save the config file, then update Caddy’s active configuration by running the same POST request again:

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

Replace active config

For good measure, verify that the config was updated:

  1. curl localhost:2019/config/

Test it by refreshing the page in your browser (or running curl again), and you will see an inspirational message!

Config traversal

Instead of uploading the entire config file for a small change, let’s use a powerful feature of Caddy’s API to make the change without ever touching our config file.

Making little changes to production servers by replacing the entire config like we did above can be dangerous; it’s like having root access to a file system. Caddy’s API lets you limit the scope of your changes to guarantee that other parts of your config don’t get changed accidentally.

Using the request URI’s path, we can traverse into the config structure and update only the message string (be sure to scroll right if clipped):

  1. curl \
  2. localhost:2019/config/apps/http/servers/example/routes/0/handle/0/body \
  3. -X POST \
  4. -H "Content-Type: application/json" \
  5. -d '"Work smarter, not harder."'

Every time you change the config using the API, Caddy persists a copy of the new config so you can --resume it later!

You can verify that it worked with a similar GET request, for example:

  1. curl localhost:2019/config/apps/http/servers/example/routes

You should see:

  1. [{"handle":[{"body":"Work smarter, not harder.","handler":"static_response"}]}]

You can use the jq command to prettify JSON output: curl ... | jq

Traverse config

Important note: This should be obvious, but once you use the API to make a change that is not in your original config file, your config file becomes obsolete. There are a few ways to handle this:

  • Use the --resume of the caddy run command to use the last active config.
  • Don’t mix the use of config files with changes via the API; have one source of truth.
  • Export Caddy’s new configuration with a subsequent GET request (less recommended than the first two options).

Using @id in JSON

Config traversal is certainly useful, but the paths are little long, don’t you think?

We can give our handler object an @id tag to make it easier to access:

  1. curl \
  2. localhost:2019/config/apps/http/servers/example/routes/0/handle/0/@id \
  3. -X POST \
  4. -H "Content-Type: application/json" \
  5. -d '"msg"'

This adds a property to our handler object: "@id": "msg", so it now looks like this:

  1. {
  2. "@id": "msg",
  3. "body": "Work smarter, not harder.",
  4. "handler": "static_response"
  5. }

@id tags can go in any object and can have any primitive value (usually a string). Learn more

We can then access it directly:

  1. curl localhost:2019/id/msg

And now we can change the message with a shorter path:

  1. curl \
  2. localhost:2019/id/msg/body \
  3. -X POST \
  4. -H "Content-Type: application/json" \
  5. -d '"Some shortcuts are good."'

And check it again:

  1. curl localhost:2019/id/msg/body

Use @id tags