diff options
author | Matthew Holt <mholt@users.noreply.github.com> | 2020-06-03 09:59:36 -0600 |
---|---|---|
committer | Matthew Holt <mholt@users.noreply.github.com> | 2020-06-03 09:59:36 -0600 |
commit | a285fe41296cf786b21f637ebe9e5f265eddaa8a (patch) | |
tree | fc08cee2b7d43895ba23d288ff13e1361d17ca65 /caddyconfig | |
parent | 97e61c16a3a0e74be0810b4714de1dab345fba8b (diff) |
caddypki: Add 'acme_server' Caddyfile directive
Diffstat (limited to 'caddyconfig')
-rw-r--r-- | caddyconfig/httpcaddyfile/directives.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/caddyconfig/httpcaddyfile/directives.go b/caddyconfig/httpcaddyfile/directives.go index cde9743..c9f4ad9 100644 --- a/caddyconfig/httpcaddyfile/directives.go +++ b/caddyconfig/httpcaddyfile/directives.go @@ -56,14 +56,15 @@ var directiveOrder = []string{ // special routing directives "handle", - "route", "handle_path", + "route", // handlers that typically respond to requests "respond", "reverse_proxy", "php_fastcgi", "file_server", + "acme_server", } // directiveIsOrdered returns true if dir is |