mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-26 21:53:48 +03:00
d9b1d46325
* Add a override_domain option to allow DNS chanllenge delegation CNAME can be used to delegate answering the chanllenge to another DNS zone. One usage is to reduce the exposure of the DNS credential [1]. Based on the discussion in caddy/certmagic#160, we are adding an option to allow the user explicitly specify the domain to delegate, instead of following the CNAME chain. This needs caddy/certmagic#160. * rename override_domain to dns_challenge_override_domain * Update CertMagic; fix spelling Co-authored-by: Matthew Holt <mholt@users.noreply.github.com>
41 lines
1.6 KiB
Modula-2
41 lines
1.6 KiB
Modula-2
module github.com/caddyserver/caddy/v2
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
cloud.google.com/go/kms v1.1.0 // indirect
|
|
github.com/BurntSushi/toml v0.4.1 // indirect
|
|
github.com/Masterminds/sprig/v3 v3.2.2
|
|
github.com/alecthomas/chroma v0.10.0
|
|
github.com/aryann/difflib v0.0.0-20210328193216-ff5ff6dc229b
|
|
github.com/caddyserver/certmagic v0.15.4
|
|
github.com/dustin/go-humanize v1.0.1-0.20200219035652-afde56e7acac
|
|
github.com/fsnotify/fsnotify v1.5.1 // indirect
|
|
github.com/go-chi/chi v4.1.2+incompatible
|
|
github.com/google/cel-go v0.7.3
|
|
github.com/google/uuid v1.3.0
|
|
github.com/klauspost/compress v1.14.2
|
|
github.com/klauspost/cpuid/v2 v2.0.10
|
|
github.com/lucas-clemente/quic-go v0.24.0
|
|
github.com/mholt/acmez v1.0.2
|
|
github.com/naoina/go-stringutil v0.1.0 // indirect
|
|
github.com/naoina/toml v0.1.1
|
|
github.com/prometheus/client_golang v1.12.1
|
|
github.com/smallstep/certificates v0.18.0
|
|
github.com/smallstep/cli v0.18.0
|
|
github.com/smallstep/nosql v0.3.9
|
|
github.com/smallstep/truststore v0.10.1
|
|
github.com/tailscale/tscert v0.0.0-20220125204807-4509a5fbaf74
|
|
github.com/yuin/goldmark v1.4.4
|
|
github.com/yuin/goldmark-highlighting v0.0.0-20210516132338-9216f9c5aa01
|
|
go.uber.org/zap v1.20.0
|
|
golang.org/x/crypto v0.0.0-20210915214749-c084706c2272
|
|
golang.org/x/net v0.0.0-20210913180222-943fd674d43e
|
|
golang.org/x/term v0.0.0-20210503060354-a79de5458b56
|
|
google.golang.org/genproto v0.0.0-20211018162055-cf77aa76bad2
|
|
google.golang.org/protobuf v1.27.1
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
gopkg.in/natefinch/lumberjack.v2 v2.0.0
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
howett.net/plist v1.0.0 // indirect
|
|
)
|