Caddyfile Concepts

This document will help you learn about the HTTP Caddyfile in detail.

  1. Structure
  2. Addresses
  3. Matchers
  4. Placeholders
  5. Snippets
  6. Comments
  7. Environment variables
  8. Global options

Structure

The Caddyfile’s structure can be described visually:

Caddyfile structure

Key points:

  • An optional global options block can be the very first thing in the file.
  • Otherwise, the first line of the Caddyfile is always the address(es) of the site to serve.
  • All directives and matchers must go in a site block. There is no global scope or inheritence across site blocks.
  • If there is only one site block, its curly braces { } are optional.

A Caddyfile consists of at least one or more site blocks, which always starts with one or more addresses for the site. Any directives appearing before the address will be confusing to the parser.

Blocks

Opening and closing a block is done with curly braces:

  1. ... {
  2. ...
  3. }
  • The open curly brace { must be at the end of its line.
  • The close curly brace } must be on its own line.

When there is only one site block, the curly braces (and indentation) are optional. This is for convenience to quickly define a single site, for example, this:

  1. localhost
  2. reverse_proxy /api/* localhost:9001
  3. file_server

is equivalent to:

  1. localhost {
  2. reverse_proxy /api/* localhost:9001
  3. file_server
  4. }

when you have only a single site block; it’s a matter of preference.

To configure multiple sites with the same Caddyfile, you must use curly braces around each one to separate their configurations:

  1. example1.com {
  2. root * /www/example.com
  3. file_server
  4. }
  5. example2.com {
  6. reverse_proxy localhost:9000
  7. }

If a request matches multiple site blocks, the site block with the most specific matching address is chosen. Requests don’t cascade into to other site blocks.

Directives

Directives are keywords which customize how the site is served. For example, a complete file server config might look like this:

  1. localhost
  2. file_server

Or a reverse proxy:

  1. localhost
  2. reverse_proxy localhost:9000

In these examples, file_server and reverse_proxy are directives. Directives are the first word on a line in a site block.

In the second example, localhost:9000 is an argument because it appears on the same line after the directive.

Subdirectives can appear in directive blocks:

  1. localhost
  2. reverse_proxy localhost:9000 localhost:9001 {
  3. lb_policy first
  4. }

Here, lb_policy is a subdirective to reverse_proxy (it sets the load balancing policy to use between backends).

Tokens and quotes

The Caddyfile is lexed into tokens before being parsed. Whitespace is significant in the Caddyfile, because tokens are separated by whitespace.

Often, directives expect a certain number of arguments; if a single argument has a value with whitespace, it would be lexed as two separate tokens:

  1. directive abc def

This could be problematic and return errors or unexpected behavior.

If abc def is supposed to be the value of a single argument, it needs to be quoted:

  1. directive "abc def"

Quotes can be escaped if you need to use quotes in quoted tokens, too:

  1. directive "\"abc def\""

Inside quoted tokens, all other characters are treated literally, including spaces, tabs, and newlines.

You can also use a backtick ` to quote tokens:

  1. directive `"foo bar"`

Backtick strings are convenient when tokens contain quote literals, e.g. JSON text.

Addresses

An address always appears at the top of the site block, and is usually the first thing in the Caddyfile.

These are examples of valid addresses:

  • localhost
  • example.com
  • :443
  • http://example.com
  • localhost:8080
  • 127.0.0.1
  • [::1]:2015
  • example.com/foo/*
  • *.example.com
  • http://

Automatic HTTPS is enabled if your site’s address contains a hostname or IP address. This behavior is purely implicit, however, so it never overrides any explicit configuration. For example, if the site’s address is http://example.com, auto-HTTPS will not activate because the scheme is explicitly http://.

From the address, Caddy can potentially infer the scheme, host, port, and path of your site.

If you specify a hostname, only requests with a matching Host header will be honored. In other words, if the site address is localhost, then Caddy will not match requests to 127.0.0.1.

Wildcards (*) may be used, but only to represent precisely one label of the hostname. For example, *.example.com matches foo.example.com but not foo.bar.example.com, and * matches localhost but not example.com. To catch all hosts, omit the host portion of the address.

If multiple sites share the same definition, you can list all of them together:

  1. localhost:8080, example.com, www.example.com

or

  1. localhost:8080,
  2. example.com,
  3. www.example.com

Notice how the commas indicate the continuation of addresses.

An address must be unique; you cannot specify the same address more than once.

Matchers

By default, a directive that injects an HTTP handler applies to all requests (unless otherwise documented).

Request matchers can be used to classify requests by a given criteria. This concept originates in the underlying JSON structure, and it’s important to know how to use them in the Caddyfile. With matchers, you can specify exactly which requests a certain directive applies to.

For directives that support matchers, the first argument after the directive is the matcher token. Here are some examples:

  1. root * /var/www # matcher token: *
  2. root /index.html /var/www # matcher token: /index.html
  3. root @post /var/www # matcher token: @post

Matcher tokens can be omitted entirely to match all requests; for example, * does not need to be given if the next argument does not look like a path matcher.

Read the page about request matchers to learn more.

Placeholders

You can use any Caddy placeholders in the Caddyfile, but for convenience you can also use some equivalent shorthand ones:

ShorthandReplaces
{dir}{http.request.uri.path.dir}
{file}{http.request.uri.path.file}
{header.}{http.request.header.}
{host}{http.request.host}
{labels.}{http.request.host.labels.}
{hostport}{http.request.hostport}
{port}{http.request.port}
{method}{http.request.method}
{path}{http.request.uri.path}
{path.}{http.request.uri.path.}
{query}{http.request.uri.query}
{query.}{http.request.uri.query.}
{re..}{http.regexp..}
{remote}{http.request.remote}
{remote_host}{http.request.remote.host}
{remote_port}{http.request.remote.port}
{scheme}{http.request.scheme}
{uri}{http.request.uri}
{tls_cipher}{http.request.tls.cipher_suite}
{tls_version}{http.request.tls.version}
{tls_client_fingerprint}{http.request.tls.client.fingerprint}
{tls_client_issuer}{http.request.tls.client.issuer}
{tls_client_serial}{http.request.tls.client.serial}
{tls_client_subject}{http.request.tls.client.subject}

Snippets

You can define special blocks called snippets by giving them a name surrounded in parentheses:

  1. (redirect) {
  2. @http {
  3. scheme http
  4. }
  5. redir @http https://{host}{uri}
  6. }

And then you can reuse this anywhere you need:

  1. import redirect

The import directive can also be used to include other files in its place. As a special case, it can appear almost anywhere within the Caddyfile.

Comments

Comments start with # and proceed until the end of the line:

  1. # Comments can start a line
  2. directive # or go at the end

The hash character # cannot appear in the middle of a token (i.e. it must be preceded by a space or appear at the beginning of a line). This allows the use of hashes within URIs or other values without requiring quoting.

Environment variables

If your configuration relies on environment variables, you can use them in the Caddyfile:

  1. {$SITE_ADDRESS}

Environment variables in this form are substituted before parsing begins, so they can expand to empty values, partial tokens, complete tokens, or even multiple tokens and lines.

If you want to defer the substitution of an environment variable until runtime, you can use the standard {env.*} placeholders.

Global options

A Caddyfile may optionally start with a special block that has no keys, called a global options block:

  1. {
  2. ...
  3. }

If present, it must be the very first block in the config.

It is used to set options that apply globally, or not to any one site in particular. Inside, only global options can be set; you cannot use regular site directives in them.

Learn more about the global options block.