2019-08-23 03:38:37 +08:00
|
|
|
// Copyright 2015 Matthew Holt and The Caddy Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package httpcaddyfile
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strconv"
|
|
|
|
|
2019-09-20 02:42:36 +08:00
|
|
|
"github.com/caddyserver/caddy/v2"
|
2021-03-13 04:00:02 +08:00
|
|
|
"github.com/caddyserver/caddy/v2/caddyconfig"
|
2019-08-23 03:38:37 +08:00
|
|
|
"github.com/caddyserver/caddy/v2/caddyconfig/caddyfile"
|
2020-03-18 11:00:45 +08:00
|
|
|
"github.com/caddyserver/caddy/v2/modules/caddytls"
|
caddytls: Add support for ZeroSSL; add Caddyfile support for issuers (#3633)
* caddytls: Add support for ZeroSSL; add Caddyfile support for issuers
Configuring issuers explicitly in a Caddyfile is not easily compatible
with existing ACME-specific parameters such as email or acme_ca which
infer the kind of issuer it creates (this is complicated now because
the ZeroSSL issuer wraps the ACME issuer)... oh well, we can revisit
that later if we need to.
New Caddyfile global option:
{
cert_issuer <name> ...
}
Or, alternatively, as a tls subdirective:
tls {
issuer <name> ...
}
For example, to use ZeroSSL with an API key:
{
cert_issuser zerossl API_KEY
}
For now, that still uses ZeroSSL's ACME endpoint; it fetches EAB
credentials for you. You can also provide the EAB credentials directly
just like any other ACME endpoint:
{
cert_issuer acme {
eab KEY_ID MAC_KEY
}
}
All these examples use the new global option (or tls subdirective). You
can still use traditional/existing options with ZeroSSL, since it's
just another ACME endpoint:
{
acme_ca https://acme.zerossl.com/v2/DV90
acme_eab KEY_ID MAC_KEY
}
That's all there is to it. You just can't mix-and-match acme_* options
with cert_issuer, because it becomes confusing/ambiguous/complicated to
merge the settings.
* Fix broken test
This test was asserting buggy behavior, oops - glad this branch both
discovers and fixes the bug at the same time!
* Fix broken test (post-merge)
* Update modules/caddytls/acmeissuer.go
Fix godoc comment
Co-authored-by: Francis Lavoie <lavofr@gmail.com>
* Add support for ZeroSSL's EAB-by-email endpoint
Also transform the ACMEIssuer into ZeroSSLIssuer implicitly if set to
the ZeroSSL endpoint without EAB (the ZeroSSLIssuer is needed to
generate EAB if not already provided); this is now possible with either
an API key or an email address.
* go.mod: Use latest certmagic, acmez, and x/net
* Wrap underlying logic rather than repeating it
Oops, duh
* Form-encode email info into request body for EAB endpoint
Co-authored-by: Francis Lavoie <lavofr@gmail.com>
2020-08-11 22:58:06 +08:00
|
|
|
"github.com/caddyserver/certmagic"
|
2020-07-31 05:18:14 +08:00
|
|
|
"github.com/mholt/acmez/acme"
|
2019-08-23 03:38:37 +08:00
|
|
|
)
|
|
|
|
|
2020-05-12 05:00:35 +08:00
|
|
|
func init() {
|
|
|
|
RegisterGlobalOption("debug", parseOptTrue)
|
|
|
|
RegisterGlobalOption("http_port", parseOptHTTPPort)
|
|
|
|
RegisterGlobalOption("https_port", parseOptHTTPSPort)
|
|
|
|
RegisterGlobalOption("default_sni", parseOptSingleString)
|
|
|
|
RegisterGlobalOption("order", parseOptOrder)
|
|
|
|
RegisterGlobalOption("storage", parseOptStorage)
|
|
|
|
RegisterGlobalOption("acme_ca", parseOptSingleString)
|
|
|
|
RegisterGlobalOption("acme_ca_root", parseOptSingleString)
|
2021-01-06 05:39:30 +08:00
|
|
|
RegisterGlobalOption("acme_dns", parseOptACMEDNS)
|
2020-06-13 03:37:56 +08:00
|
|
|
RegisterGlobalOption("acme_eab", parseOptACMEEAB)
|
caddytls: Add support for ZeroSSL; add Caddyfile support for issuers (#3633)
* caddytls: Add support for ZeroSSL; add Caddyfile support for issuers
Configuring issuers explicitly in a Caddyfile is not easily compatible
with existing ACME-specific parameters such as email or acme_ca which
infer the kind of issuer it creates (this is complicated now because
the ZeroSSL issuer wraps the ACME issuer)... oh well, we can revisit
that later if we need to.
New Caddyfile global option:
{
cert_issuer <name> ...
}
Or, alternatively, as a tls subdirective:
tls {
issuer <name> ...
}
For example, to use ZeroSSL with an API key:
{
cert_issuser zerossl API_KEY
}
For now, that still uses ZeroSSL's ACME endpoint; it fetches EAB
credentials for you. You can also provide the EAB credentials directly
just like any other ACME endpoint:
{
cert_issuer acme {
eab KEY_ID MAC_KEY
}
}
All these examples use the new global option (or tls subdirective). You
can still use traditional/existing options with ZeroSSL, since it's
just another ACME endpoint:
{
acme_ca https://acme.zerossl.com/v2/DV90
acme_eab KEY_ID MAC_KEY
}
That's all there is to it. You just can't mix-and-match acme_* options
with cert_issuer, because it becomes confusing/ambiguous/complicated to
merge the settings.
* Fix broken test
This test was asserting buggy behavior, oops - glad this branch both
discovers and fixes the bug at the same time!
* Fix broken test (post-merge)
* Update modules/caddytls/acmeissuer.go
Fix godoc comment
Co-authored-by: Francis Lavoie <lavofr@gmail.com>
* Add support for ZeroSSL's EAB-by-email endpoint
Also transform the ACMEIssuer into ZeroSSLIssuer implicitly if set to
the ZeroSSL endpoint without EAB (the ZeroSSLIssuer is needed to
generate EAB if not already provided); this is now possible with either
an API key or an email address.
* go.mod: Use latest certmagic, acmez, and x/net
* Wrap underlying logic rather than repeating it
Oops, duh
* Form-encode email info into request body for EAB endpoint
Co-authored-by: Francis Lavoie <lavofr@gmail.com>
2020-08-11 22:58:06 +08:00
|
|
|
RegisterGlobalOption("cert_issuer", parseOptCertIssuer)
|
2020-05-12 05:00:35 +08:00
|
|
|
RegisterGlobalOption("email", parseOptSingleString)
|
|
|
|
RegisterGlobalOption("admin", parseOptAdmin)
|
|
|
|
RegisterGlobalOption("on_demand_tls", parseOptOnDemand)
|
|
|
|
RegisterGlobalOption("local_certs", parseOptTrue)
|
|
|
|
RegisterGlobalOption("key_type", parseOptSingleString)
|
2020-05-20 06:59:51 +08:00
|
|
|
RegisterGlobalOption("auto_https", parseOptAutoHTTPS)
|
2020-11-24 03:46:50 +08:00
|
|
|
RegisterGlobalOption("servers", parseServerOptions)
|
2021-01-08 06:52:58 +08:00
|
|
|
RegisterGlobalOption("ocsp_stapling", parseOCSPStaplingOptions)
|
2021-03-13 04:00:02 +08:00
|
|
|
RegisterGlobalOption("log", parseLogOptions)
|
2020-05-12 05:00:35 +08:00
|
|
|
}
|
|
|
|
|
2021-01-08 02:01:58 +08:00
|
|
|
func parseOptTrue(d *caddyfile.Dispenser, _ interface{}) (interface{}, error) { return true, nil }
|
2020-05-12 05:00:35 +08:00
|
|
|
|
2021-01-08 02:01:58 +08:00
|
|
|
func parseOptHTTPPort(d *caddyfile.Dispenser, _ interface{}) (interface{}, error) {
|
2019-08-23 03:38:37 +08:00
|
|
|
var httpPort int
|
|
|
|
for d.Next() {
|
|
|
|
var httpPortStr string
|
|
|
|
if !d.AllArgs(&httpPortStr) {
|
|
|
|
return 0, d.ArgErr()
|
|
|
|
}
|
|
|
|
var err error
|
|
|
|
httpPort, err = strconv.Atoi(httpPortStr)
|
|
|
|
if err != nil {
|
|
|
|
return 0, d.Errf("converting port '%s' to integer value: %v", httpPortStr, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return httpPort, nil
|
|
|
|
}
|
|
|
|
|
2021-01-08 02:01:58 +08:00
|
|
|
func parseOptHTTPSPort(d *caddyfile.Dispenser, _ interface{}) (interface{}, error) {
|
2019-08-23 03:38:37 +08:00
|
|
|
var httpsPort int
|
|
|
|
for d.Next() {
|
|
|
|
var httpsPortStr string
|
|
|
|
if !d.AllArgs(&httpsPortStr) {
|
|
|
|
return 0, d.ArgErr()
|
|
|
|
}
|
|
|
|
var err error
|
|
|
|
httpsPort, err = strconv.Atoi(httpsPortStr)
|
|
|
|
if err != nil {
|
|
|
|
return 0, d.Errf("converting port '%s' to integer value: %v", httpsPortStr, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return httpsPort, nil
|
|
|
|
}
|
2019-08-23 04:26:33 +08:00
|
|
|
|
2021-01-08 02:01:58 +08:00
|
|
|
func parseOptOrder(d *caddyfile.Dispenser, _ interface{}) (interface{}, error) {
|
2020-01-17 03:09:54 +08:00
|
|
|
newOrder := directiveOrder
|
|
|
|
|
|
|
|
for d.Next() {
|
|
|
|
// get directive name
|
|
|
|
if !d.Next() {
|
|
|
|
return nil, d.ArgErr()
|
|
|
|
}
|
|
|
|
dirName := d.Val()
|
|
|
|
if _, ok := registeredDirectives[dirName]; !ok {
|
2020-03-18 11:00:45 +08:00
|
|
|
return nil, d.Errf("%s is not a registered directive", dirName)
|
2020-01-17 03:09:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// get positional token
|
|
|
|
if !d.Next() {
|
|
|
|
return nil, d.ArgErr()
|
|
|
|
}
|
|
|
|
pos := d.Val()
|
|
|
|
|
|
|
|
// if directive exists, first remove it
|
|
|
|
for i, d := range newOrder {
|
|
|
|
if d == dirName {
|
|
|
|
newOrder = append(newOrder[:i], newOrder[i+1:]...)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// act on the positional
|
|
|
|
switch pos {
|
|
|
|
case "first":
|
|
|
|
newOrder = append([]string{dirName}, newOrder...)
|
|
|
|
if d.NextArg() {
|
|
|
|
return nil, d.ArgErr()
|
|
|
|
}
|
|
|
|
directiveOrder = newOrder
|
|
|
|
return newOrder, nil
|
|
|
|
case "last":
|
|
|
|
newOrder = append(newOrder, dirName)
|
|
|
|
if d.NextArg() {
|
|
|
|
return nil, d.ArgErr()
|
|
|
|
}
|
|
|
|
directiveOrder = newOrder
|
|
|
|
return newOrder, nil
|
|
|
|
case "before":
|
|
|
|
case "after":
|
|
|
|
default:
|
2020-03-18 11:00:45 +08:00
|
|
|
return nil, d.Errf("unknown positional '%s'", pos)
|
2020-01-17 03:09:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// get name of other directive
|
|
|
|
if !d.NextArg() {
|
|
|
|
return nil, d.ArgErr()
|
|
|
|
}
|
|
|
|
otherDir := d.Val()
|
2019-08-23 04:26:33 +08:00
|
|
|
if d.NextArg() {
|
|
|
|
return nil, d.ArgErr()
|
|
|
|
}
|
2020-01-17 03:09:54 +08:00
|
|
|
|
|
|
|
// insert directive into proper position
|
|
|
|
for i, d := range newOrder {
|
|
|
|
if d == otherDir {
|
|
|
|
if pos == "before" {
|
|
|
|
newOrder = append(newOrder[:i], append([]string{dirName}, newOrder[i:]...)...)
|
|
|
|
} else if pos == "after" {
|
|
|
|
newOrder = append(newOrder[:i+1], append([]string{dirName}, newOrder[i+1:]...)...)
|
|
|
|
}
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2019-08-23 04:26:33 +08:00
|
|
|
}
|
2020-01-17 03:09:54 +08:00
|
|
|
|
|
|
|
directiveOrder = newOrder
|
|
|
|
|
|
|
|
return newOrder, nil
|
2019-08-23 04:26:33 +08:00
|
|
|
}
|
2019-09-20 02:42:36 +08:00
|
|
|
|
2021-01-08 02:01:58 +08:00
|
|
|
func parseOptStorage(d *caddyfile.Dispenser, _ interface{}) (interface{}, error) {
|
2020-05-01 23:34:32 +08:00
|
|
|
if !d.Next() { // consume option name
|
2019-09-20 02:42:36 +08:00
|
|
|
return nil, d.ArgErr()
|
|
|
|
}
|
2020-05-01 23:34:32 +08:00
|
|
|
if !d.Next() { // get storage module name
|
2019-09-20 02:42:36 +08:00
|
|
|
return nil, d.ArgErr()
|
|
|
|
}
|
2021-01-06 05:39:30 +08:00
|
|
|
modID := "caddy.storage." + d.Val()
|
|
|
|
unm, err := caddyfile.UnmarshalModule(d, modID)
|
2019-09-20 02:42:36 +08:00
|
|
|
if err != nil {
|
2021-01-06 05:39:30 +08:00
|
|
|
return nil, err
|
2019-09-20 02:42:36 +08:00
|
|
|
}
|
2021-01-06 05:39:30 +08:00
|
|
|
storage, ok := unm.(caddy.StorageConverter)
|
2019-09-20 02:42:36 +08:00
|
|
|
if !ok {
|
2021-01-06 05:39:30 +08:00
|
|
|
return nil, d.Errf("module %s is not a caddy.StorageConverter", modID)
|
|
|
|
}
|
|
|
|
return storage, nil
|
|
|
|
}
|
|
|
|
|
2021-01-08 02:01:58 +08:00
|
|
|
func parseOptACMEDNS(d *caddyfile.Dispenser, _ interface{}) (interface{}, error) {
|
2021-01-06 05:39:30 +08:00
|
|
|
if !d.Next() { // consume option name
|
|
|
|
return nil, d.ArgErr()
|
2019-09-20 02:42:36 +08:00
|
|
|
}
|
2021-01-06 05:39:30 +08:00
|
|
|
if !d.Next() { // get DNS module name
|
|
|
|
return nil, d.ArgErr()
|
|
|
|
}
|
|
|
|
modID := "dns.providers." + d.Val()
|
|
|
|
unm, err := caddyfile.UnmarshalModule(d, modID)
|
2019-09-20 02:42:36 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-01-06 05:39:30 +08:00
|
|
|
prov, ok := unm.(certmagic.ACMEDNSProvider)
|
2019-09-20 02:42:36 +08:00
|
|
|
if !ok {
|
2021-01-06 05:39:30 +08:00
|
|
|
return nil, d.Errf("module %s (%T) is not a certmagic.ACMEDNSProvider", modID, unm)
|
2019-09-20 02:42:36 +08:00
|
|
|
}
|
2021-01-06 05:39:30 +08:00
|
|
|
return prov, nil
|
2019-09-20 02:42:36 +08:00
|
|
|
}
|
2019-09-30 23:11:30 +08:00
|
|
|
|
2021-01-08 02:01:58 +08:00
|
|
|
func parseOptACMEEAB(d *caddyfile.Dispenser, _ interface{}) (interface{}, error) {
|
2020-07-31 05:18:14 +08:00
|
|
|
eab := new(acme.EAB)
|
2020-06-13 03:37:56 +08:00
|
|
|
for d.Next() {
|
|
|
|
if d.NextArg() {
|
|
|
|
return nil, d.ArgErr()
|
|
|
|
}
|
|
|
|
for nesting := d.Nesting(); d.NextBlock(nesting); {
|
|
|
|
switch d.Val() {
|
|
|
|
case "key_id":
|
|
|
|
if !d.NextArg() {
|
|
|
|
return nil, d.ArgErr()
|
|
|
|
}
|
|
|
|
eab.KeyID = d.Val()
|
|
|
|
|
2020-07-31 05:18:14 +08:00
|
|
|
case "mac_key":
|
2020-06-13 03:37:56 +08:00
|
|
|
if !d.NextArg() {
|
|
|
|
return nil, d.ArgErr()
|
|
|
|
}
|
2020-07-31 05:18:14 +08:00
|
|
|
eab.MACKey = d.Val()
|
2020-06-13 03:37:56 +08:00
|
|
|
|
|
|
|
default:
|
|
|
|
return nil, d.Errf("unrecognized parameter '%s'", d.Val())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return eab, nil
|
|
|
|
}
|
|
|
|
|
2021-01-08 02:01:58 +08:00
|
|
|
func parseOptCertIssuer(d *caddyfile.Dispenser, existing interface{}) (interface{}, error) {
|
|
|
|
var issuers []certmagic.Issuer
|
|
|
|
if existing != nil {
|
|
|
|
issuers = existing.([]certmagic.Issuer)
|
caddytls: Add support for ZeroSSL; add Caddyfile support for issuers (#3633)
* caddytls: Add support for ZeroSSL; add Caddyfile support for issuers
Configuring issuers explicitly in a Caddyfile is not easily compatible
with existing ACME-specific parameters such as email or acme_ca which
infer the kind of issuer it creates (this is complicated now because
the ZeroSSL issuer wraps the ACME issuer)... oh well, we can revisit
that later if we need to.
New Caddyfile global option:
{
cert_issuer <name> ...
}
Or, alternatively, as a tls subdirective:
tls {
issuer <name> ...
}
For example, to use ZeroSSL with an API key:
{
cert_issuser zerossl API_KEY
}
For now, that still uses ZeroSSL's ACME endpoint; it fetches EAB
credentials for you. You can also provide the EAB credentials directly
just like any other ACME endpoint:
{
cert_issuer acme {
eab KEY_ID MAC_KEY
}
}
All these examples use the new global option (or tls subdirective). You
can still use traditional/existing options with ZeroSSL, since it's
just another ACME endpoint:
{
acme_ca https://acme.zerossl.com/v2/DV90
acme_eab KEY_ID MAC_KEY
}
That's all there is to it. You just can't mix-and-match acme_* options
with cert_issuer, because it becomes confusing/ambiguous/complicated to
merge the settings.
* Fix broken test
This test was asserting buggy behavior, oops - glad this branch both
discovers and fixes the bug at the same time!
* Fix broken test (post-merge)
* Update modules/caddytls/acmeissuer.go
Fix godoc comment
Co-authored-by: Francis Lavoie <lavofr@gmail.com>
* Add support for ZeroSSL's EAB-by-email endpoint
Also transform the ACMEIssuer into ZeroSSLIssuer implicitly if set to
the ZeroSSL endpoint without EAB (the ZeroSSLIssuer is needed to
generate EAB if not already provided); this is now possible with either
an API key or an email address.
* go.mod: Use latest certmagic, acmez, and x/net
* Wrap underlying logic rather than repeating it
Oops, duh
* Form-encode email info into request body for EAB endpoint
Co-authored-by: Francis Lavoie <lavofr@gmail.com>
2020-08-11 22:58:06 +08:00
|
|
|
}
|
2021-01-08 02:01:58 +08:00
|
|
|
for d.Next() { // consume option name
|
|
|
|
if !d.Next() { // get issuer module name
|
|
|
|
return nil, d.ArgErr()
|
|
|
|
}
|
|
|
|
modID := "tls.issuance." + d.Val()
|
|
|
|
unm, err := caddyfile.UnmarshalModule(d, modID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
iss, ok := unm.(certmagic.Issuer)
|
|
|
|
if !ok {
|
|
|
|
return nil, d.Errf("module %s (%T) is not a certmagic.Issuer", modID, unm)
|
|
|
|
}
|
|
|
|
issuers = append(issuers, iss)
|
caddytls: Add support for ZeroSSL; add Caddyfile support for issuers (#3633)
* caddytls: Add support for ZeroSSL; add Caddyfile support for issuers
Configuring issuers explicitly in a Caddyfile is not easily compatible
with existing ACME-specific parameters such as email or acme_ca which
infer the kind of issuer it creates (this is complicated now because
the ZeroSSL issuer wraps the ACME issuer)... oh well, we can revisit
that later if we need to.
New Caddyfile global option:
{
cert_issuer <name> ...
}
Or, alternatively, as a tls subdirective:
tls {
issuer <name> ...
}
For example, to use ZeroSSL with an API key:
{
cert_issuser zerossl API_KEY
}
For now, that still uses ZeroSSL's ACME endpoint; it fetches EAB
credentials for you. You can also provide the EAB credentials directly
just like any other ACME endpoint:
{
cert_issuer acme {
eab KEY_ID MAC_KEY
}
}
All these examples use the new global option (or tls subdirective). You
can still use traditional/existing options with ZeroSSL, since it's
just another ACME endpoint:
{
acme_ca https://acme.zerossl.com/v2/DV90
acme_eab KEY_ID MAC_KEY
}
That's all there is to it. You just can't mix-and-match acme_* options
with cert_issuer, because it becomes confusing/ambiguous/complicated to
merge the settings.
* Fix broken test
This test was asserting buggy behavior, oops - glad this branch both
discovers and fixes the bug at the same time!
* Fix broken test (post-merge)
* Update modules/caddytls/acmeissuer.go
Fix godoc comment
Co-authored-by: Francis Lavoie <lavofr@gmail.com>
* Add support for ZeroSSL's EAB-by-email endpoint
Also transform the ACMEIssuer into ZeroSSLIssuer implicitly if set to
the ZeroSSL endpoint without EAB (the ZeroSSLIssuer is needed to
generate EAB if not already provided); this is now possible with either
an API key or an email address.
* go.mod: Use latest certmagic, acmez, and x/net
* Wrap underlying logic rather than repeating it
Oops, duh
* Form-encode email info into request body for EAB endpoint
Co-authored-by: Francis Lavoie <lavofr@gmail.com>
2020-08-11 22:58:06 +08:00
|
|
|
}
|
2021-01-08 02:01:58 +08:00
|
|
|
return issuers, nil
|
caddytls: Add support for ZeroSSL; add Caddyfile support for issuers (#3633)
* caddytls: Add support for ZeroSSL; add Caddyfile support for issuers
Configuring issuers explicitly in a Caddyfile is not easily compatible
with existing ACME-specific parameters such as email or acme_ca which
infer the kind of issuer it creates (this is complicated now because
the ZeroSSL issuer wraps the ACME issuer)... oh well, we can revisit
that later if we need to.
New Caddyfile global option:
{
cert_issuer <name> ...
}
Or, alternatively, as a tls subdirective:
tls {
issuer <name> ...
}
For example, to use ZeroSSL with an API key:
{
cert_issuser zerossl API_KEY
}
For now, that still uses ZeroSSL's ACME endpoint; it fetches EAB
credentials for you. You can also provide the EAB credentials directly
just like any other ACME endpoint:
{
cert_issuer acme {
eab KEY_ID MAC_KEY
}
}
All these examples use the new global option (or tls subdirective). You
can still use traditional/existing options with ZeroSSL, since it's
just another ACME endpoint:
{
acme_ca https://acme.zerossl.com/v2/DV90
acme_eab KEY_ID MAC_KEY
}
That's all there is to it. You just can't mix-and-match acme_* options
with cert_issuer, because it becomes confusing/ambiguous/complicated to
merge the settings.
* Fix broken test
This test was asserting buggy behavior, oops - glad this branch both
discovers and fixes the bug at the same time!
* Fix broken test (post-merge)
* Update modules/caddytls/acmeissuer.go
Fix godoc comment
Co-authored-by: Francis Lavoie <lavofr@gmail.com>
* Add support for ZeroSSL's EAB-by-email endpoint
Also transform the ACMEIssuer into ZeroSSLIssuer implicitly if set to
the ZeroSSL endpoint without EAB (the ZeroSSLIssuer is needed to
generate EAB if not already provided); this is now possible with either
an API key or an email address.
* go.mod: Use latest certmagic, acmez, and x/net
* Wrap underlying logic rather than repeating it
Oops, duh
* Form-encode email info into request body for EAB endpoint
Co-authored-by: Francis Lavoie <lavofr@gmail.com>
2020-08-11 22:58:06 +08:00
|
|
|
}
|
|
|
|
|
2021-01-08 02:01:58 +08:00
|
|
|
func parseOptSingleString(d *caddyfile.Dispenser, _ interface{}) (interface{}, error) {
|
2019-09-30 23:11:30 +08:00
|
|
|
d.Next() // consume parameter name
|
|
|
|
if !d.Next() {
|
|
|
|
return "", d.ArgErr()
|
|
|
|
}
|
|
|
|
val := d.Val()
|
|
|
|
if d.Next() {
|
|
|
|
return "", d.ArgErr()
|
|
|
|
}
|
|
|
|
return val, nil
|
|
|
|
}
|
2019-10-31 05:12:42 +08:00
|
|
|
|
2021-01-08 02:01:58 +08:00
|
|
|
func parseOptAdmin(d *caddyfile.Dispenser, _ interface{}) (interface{}, error) {
|
2020-08-04 03:44:38 +08:00
|
|
|
adminCfg := new(caddy.AdminConfig)
|
|
|
|
for d.Next() {
|
|
|
|
if d.NextArg() {
|
|
|
|
listenAddress := d.Val()
|
|
|
|
if listenAddress == "off" {
|
|
|
|
adminCfg.Disabled = true
|
|
|
|
if d.Next() { // Do not accept any remaining options including block
|
|
|
|
return nil, d.Err("No more option is allowed after turning off admin config")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
adminCfg.Listen = listenAddress
|
|
|
|
if d.NextArg() { // At most 1 arg is allowed
|
|
|
|
return nil, d.ArgErr()
|
|
|
|
}
|
|
|
|
}
|
2020-03-10 22:25:26 +08:00
|
|
|
}
|
2020-08-04 03:44:38 +08:00
|
|
|
for nesting := d.Nesting(); d.NextBlock(nesting); {
|
|
|
|
switch d.Val() {
|
|
|
|
case "enforce_origin":
|
|
|
|
adminCfg.EnforceOrigin = true
|
|
|
|
|
|
|
|
case "origins":
|
|
|
|
adminCfg.Origins = d.RemainingArgs()
|
|
|
|
|
|
|
|
default:
|
|
|
|
return nil, d.Errf("unrecognized parameter '%s'", d.Val())
|
|
|
|
}
|
2019-10-31 05:12:42 +08:00
|
|
|
}
|
|
|
|
}
|
2020-08-04 03:44:38 +08:00
|
|
|
if adminCfg.Listen == "" && !adminCfg.Disabled {
|
|
|
|
adminCfg.Listen = caddy.DefaultAdminListen
|
|
|
|
}
|
|
|
|
return adminCfg, nil
|
2019-10-31 05:12:42 +08:00
|
|
|
}
|
2020-03-18 11:00:45 +08:00
|
|
|
|
2021-01-08 02:01:58 +08:00
|
|
|
func parseOptOnDemand(d *caddyfile.Dispenser, _ interface{}) (interface{}, error) {
|
2020-03-18 11:00:45 +08:00
|
|
|
var ond *caddytls.OnDemandConfig
|
|
|
|
for d.Next() {
|
|
|
|
if d.NextArg() {
|
|
|
|
return nil, d.ArgErr()
|
|
|
|
}
|
|
|
|
for nesting := d.Nesting(); d.NextBlock(nesting); {
|
|
|
|
switch d.Val() {
|
|
|
|
case "ask":
|
|
|
|
if !d.NextArg() {
|
|
|
|
return nil, d.ArgErr()
|
|
|
|
}
|
|
|
|
if ond == nil {
|
|
|
|
ond = new(caddytls.OnDemandConfig)
|
|
|
|
}
|
|
|
|
ond.Ask = d.Val()
|
|
|
|
|
|
|
|
case "interval":
|
|
|
|
if !d.NextArg() {
|
|
|
|
return nil, d.ArgErr()
|
|
|
|
}
|
2020-05-12 06:41:11 +08:00
|
|
|
dur, err := caddy.ParseDuration(d.Val())
|
2020-03-18 11:00:45 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if ond == nil {
|
|
|
|
ond = new(caddytls.OnDemandConfig)
|
|
|
|
}
|
|
|
|
if ond.RateLimit == nil {
|
|
|
|
ond.RateLimit = new(caddytls.RateLimit)
|
|
|
|
}
|
|
|
|
ond.RateLimit.Interval = caddy.Duration(dur)
|
|
|
|
|
|
|
|
case "burst":
|
|
|
|
if !d.NextArg() {
|
|
|
|
return nil, d.ArgErr()
|
|
|
|
}
|
|
|
|
burst, err := strconv.Atoi(d.Val())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if ond == nil {
|
|
|
|
ond = new(caddytls.OnDemandConfig)
|
|
|
|
}
|
|
|
|
if ond.RateLimit == nil {
|
|
|
|
ond.RateLimit = new(caddytls.RateLimit)
|
|
|
|
}
|
|
|
|
ond.RateLimit.Burst = burst
|
|
|
|
|
|
|
|
default:
|
|
|
|
return nil, d.Errf("unrecognized parameter '%s'", d.Val())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ond == nil {
|
|
|
|
return nil, d.Err("expected at least one config parameter for on_demand_tls")
|
|
|
|
}
|
|
|
|
return ond, nil
|
|
|
|
}
|
2020-05-20 06:59:51 +08:00
|
|
|
|
2021-01-08 02:01:58 +08:00
|
|
|
func parseOptAutoHTTPS(d *caddyfile.Dispenser, _ interface{}) (interface{}, error) {
|
2020-05-20 06:59:51 +08:00
|
|
|
d.Next() // consume parameter name
|
|
|
|
if !d.Next() {
|
|
|
|
return "", d.ArgErr()
|
|
|
|
}
|
|
|
|
val := d.Val()
|
|
|
|
if d.Next() {
|
|
|
|
return "", d.ArgErr()
|
|
|
|
}
|
|
|
|
if val != "off" && val != "disable_redirects" {
|
|
|
|
return "", d.Errf("auto_https must be either 'off' or 'disable_redirects'")
|
|
|
|
}
|
|
|
|
return val, nil
|
|
|
|
}
|
2020-11-24 03:46:50 +08:00
|
|
|
|
2021-01-08 02:01:58 +08:00
|
|
|
func parseServerOptions(d *caddyfile.Dispenser, _ interface{}) (interface{}, error) {
|
2020-11-24 03:46:50 +08:00
|
|
|
return unmarshalCaddyfileServerOptions(d)
|
|
|
|
}
|
2021-01-08 06:52:58 +08:00
|
|
|
|
|
|
|
func parseOCSPStaplingOptions(d *caddyfile.Dispenser, _ interface{}) (interface{}, error) {
|
|
|
|
d.Next() // consume option name
|
|
|
|
var val string
|
|
|
|
if !d.AllArgs(&val) {
|
|
|
|
return nil, d.ArgErr()
|
|
|
|
}
|
|
|
|
if val != "off" {
|
|
|
|
return nil, d.Errf("invalid argument '%s'", val)
|
|
|
|
}
|
|
|
|
return certmagic.OCSPConfig{
|
|
|
|
DisableStapling: val == "off",
|
|
|
|
}, nil
|
|
|
|
}
|
2021-03-13 04:00:02 +08:00
|
|
|
|
|
|
|
// parseLogOptions parses the global log option. Syntax:
|
|
|
|
//
|
|
|
|
// log [name] {
|
|
|
|
// output <writer_module> ...
|
|
|
|
// format <encoder_module> ...
|
|
|
|
// level <level>
|
|
|
|
// include <namespaces...>
|
|
|
|
// exclude <namespaces...>
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// When the name argument is unspecified, this directive modifies the default
|
|
|
|
// logger.
|
|
|
|
//
|
|
|
|
func parseLogOptions(d *caddyfile.Dispenser, existingVal interface{}) (interface{}, error) {
|
|
|
|
currentNames := make(map[string]struct{})
|
|
|
|
if existingVal != nil {
|
|
|
|
innerVals, ok := existingVal.([]ConfigValue)
|
|
|
|
if !ok {
|
|
|
|
return nil, d.Errf("existing log values of unexpected type: %T", existingVal)
|
|
|
|
}
|
|
|
|
for _, rawVal := range innerVals {
|
|
|
|
val, ok := rawVal.Value.(namedCustomLog)
|
|
|
|
if !ok {
|
|
|
|
return nil, d.Errf("existing log value of unexpected type: %T", existingVal)
|
|
|
|
}
|
|
|
|
currentNames[val.name] = struct{}{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var warnings []caddyconfig.Warning
|
|
|
|
// Call out the same parser that handles server-specific log configuration.
|
|
|
|
configValues, err := parseLogHelper(
|
|
|
|
Helper{
|
|
|
|
Dispenser: d,
|
|
|
|
warnings: &warnings,
|
|
|
|
},
|
|
|
|
currentNames,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if len(warnings) > 0 {
|
|
|
|
return nil, d.Errf("warnings found in parsing global log options: %+v", warnings)
|
|
|
|
}
|
|
|
|
|
|
|
|
return configValues, nil
|
|
|
|
}
|