mirror of
https://github.com/caddyserver/website.git
synced 2025-04-21 12:36:16 -04:00
docs: Add docs for acme_server Caddyfile directive
This commit is contained in:
parent
1367aebe20
commit
f30a545625
2 changed files with 22 additions and 0 deletions
|
@ -8,6 +8,7 @@ The following directives come standard with Caddy, and can be used in the HTTP C
|
|||
|
||||
Directive | Description
|
||||
----------|------------
|
||||
**[acme_server](/docs/caddyfile/directives/acme_server)** | An embedded ACME server
|
||||
**[basicauth](/docs/caddyfile/directives/basicauth)** | Enforces HTTP Basic Authentication
|
||||
**[bind](/docs/caddyfile/directives/bind)** | Customize the server's socket address
|
||||
**[encode](/docs/caddyfile/directives/encode)** | Encodes (usually compresses) responses
|
||||
|
|
21
src/docs/markdown/caddyfile/directives/acme_server.md
Normal file
21
src/docs/markdown/caddyfile/directives/acme_server.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
title: acme_server (Caddyfile directive)
|
||||
---
|
||||
|
||||
# acme_server
|
||||
|
||||
An embedded [ACME protocol](https://tools.ietf.org/html/rfc8555) server handler. This allows a Caddy instance to issue certificates for any other ACME-compatible software (including other Caddy instances).
|
||||
|
||||
When enabled, requests matching the path `/acme/*` will be handled by the ACME server.
|
||||
|
||||
|
||||
## Client configuration
|
||||
|
||||
Using ACME server defaults, ACME clients should simply be configured to use `https://localhost/acme/directory` as their ACME endpoint.
|
||||
|
||||
|
||||
## Syntax
|
||||
|
||||
```caddy-d
|
||||
acme_server [<matcher>]
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue