mirror of
https://github.com/caddyserver/website.git
synced 2025-04-21 04:26:16 -04:00
docs: Update for rc2
This commit is contained in:
parent
632345845c
commit
8e7b3b81d0
2 changed files with 10 additions and 2 deletions
|
@ -223,13 +223,19 @@ By the method (verb) of the HTTP request. Verbs should be uppercase, like `POST`
|
||||||
|
|
||||||
### not
|
### not
|
||||||
|
|
||||||
|
```
|
||||||
|
not <any other matcher>
|
||||||
|
```
|
||||||
|
|
||||||
|
or, to negate multiple matchers which get AND'ed, open a block:
|
||||||
|
|
||||||
```
|
```
|
||||||
not {
|
not {
|
||||||
<any other matchers...>
|
<any other matchers...>
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Encloses other matchers and negates their result.
|
The results of the enclosed matchers will be negated.
|
||||||
|
|
||||||
|
|
||||||
### path
|
### path
|
||||||
|
|
|
@ -39,6 +39,7 @@ Possible options are:
|
||||||
burst <n>
|
burst <n>
|
||||||
}
|
}
|
||||||
local_certs
|
local_certs
|
||||||
|
key_type ed25519|p256|p384|rsa2048|rsa4096
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -57,3 +58,4 @@ Possible options are:
|
||||||
- **ask** will cause Caddy to make an HTTP request to the given URL with a query string of `?domain=` containing the value of the domain name. If the endpoint returns 200 OK, Caddy will be authorized to obtain a certificate for that name.
|
- **ask** will cause Caddy to make an HTTP request to the given URL with a query string of `?domain=` containing the value of the domain name. If the endpoint returns 200 OK, Caddy will be authorized to obtain a certificate for that name.
|
||||||
- **interval** and **burst** allows `<n>` certificate operations within `<duration>` interval.
|
- **interval** and **burst** allows `<n>` certificate operations within `<duration>` interval.
|
||||||
- **local_certs** causes all certificates to be issued internally by default, rather than through a (public) ACME CA such as Let's Encrypt. This is useful in development environments.
|
- **local_certs** causes all certificates to be issued internally by default, rather than through a (public) ACME CA such as Let's Encrypt. This is useful in development environments.
|
||||||
|
- **key_type** specifies the type of key to generate for TLS certificates; only change this if you have a specific need to customize it.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue