mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-25 09:40:13 +08:00
35f70c98fa
Fixed several bugs and made other improvements. All config changes are now mediated by the global config state manager. It used to be that initial configs given at startup weren't tracked, so you could start caddy with --config caddy.json and then do a GET /config/ and it would return null. That is fixed, along with several other general flow/API enhancements, with more to come.
32 lines
1.2 KiB
Modula-2
32 lines
1.2 KiB
Modula-2
module github.com/caddyserver/caddy/v2
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/Masterminds/sprig/v3 v3.0.0
|
|
github.com/andybalholm/brotli v0.0.0-20190821151343-b60f0d972eeb
|
|
github.com/dustin/go-humanize v1.0.0
|
|
github.com/go-acme/lego/v3 v3.1.0
|
|
github.com/golang/groupcache v0.0.0-20191002201903-404acd9df4cc
|
|
github.com/ilibs/json5 v1.0.1
|
|
github.com/imdario/mergo v0.3.8 // indirect
|
|
github.com/jsternberg/zap-logfmt v1.2.0
|
|
github.com/keybase/go-ps v0.0.0-20190827175125-91aafc93ba19
|
|
github.com/klauspost/compress v1.8.6
|
|
github.com/klauspost/cpuid v1.2.1
|
|
github.com/lucas-clemente/quic-go v0.12.1
|
|
github.com/mholt/certmagic v0.8.3
|
|
github.com/muhammadmuzzammil1998/jsonc v0.0.0-20190906142622-1265e9b150c6
|
|
github.com/onsi/ginkgo v1.8.0 // indirect
|
|
github.com/onsi/gomega v1.5.0 // indirect
|
|
github.com/russross/blackfriday/v2 v2.0.1
|
|
github.com/starlight-go/starlight v0.0.0-20181207205707-b06f321544f3
|
|
github.com/vulcand/oxy v1.0.0
|
|
go.starlark.net v0.0.0-20190919145610-979af19b165c
|
|
go.uber.org/multierr v1.2.0 // indirect
|
|
go.uber.org/zap v1.10.0
|
|
golang.org/x/crypto v0.0.0-20191010185427-af544f31c8ac
|
|
golang.org/x/net v0.0.0-20191009170851-d66e71096ffb
|
|
gopkg.in/natefinch/lumberjack.v2 v2.0.0
|
|
)
|