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:
fox.cpp 2021-07-13 12:38:42 +03:00
parent bae40f875b
commit 93cf4f231a
19 changed files with 1106 additions and 2 deletions

View file

@ -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