mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 14:07:38 +03:00
Integrate CertMagic ACME client with dns-01 challenge
Support for a subset of libdns providers is added. Some are enabled by default (assuming they are popular ones). AWS and Google Cloud SDKs take up extra 10 MiB of executable size. Only filesystem storage is supported as of now. Closes #3.
This commit is contained in:
parent
bae40f875b
commit
93cf4f231a
19 changed files with 1106 additions and 2 deletions
|
@ -25,6 +25,13 @@ import (
|
|||
)
|
||||
|
||||
var (
|
||||
// NoRun makes sure modules do not start any bacground tests.
|
||||
//
|
||||
// If it set - modules should not perform any actual work and should stop
|
||||
// once the configuration is read and verified to be correct.
|
||||
// TODO: Replace it with separation of Init and Run at interface level.
|
||||
NoRun = false
|
||||
|
||||
modules = make(map[string]FuncNewModule)
|
||||
endpoints = make(map[string]FuncNewEndpoint)
|
||||
modulesLock sync.RWMutex
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue