Skip to content

libdns/acmeproxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ACMEProxy for libdns

Go Reference

This package implements the libdns interfaces for ACMEProxy, allowing you to manage DNS records.

Please note that ACMEProxy is more or less only used for ACME DNS and therefor only is able to create and delete TXT records

For a server to use it with see acmeproxy

Example configuration

// Without Auth
p := acmeproxy.Provider{
    Endpoint: "https://example.com:9090",
}

// With Auth
p := acmeproxy.Provider{
    Endpoint: "https://example.com:9090",
    Credentials: acmeproxy.Credentials{
        Username: "admin",
        Password: "password",
    },
}

// With Custom Client
p := acmeproxy.Provider{
	Endpoint: "https://example.com:9090",
	Credentials: acmeproxy.Credentials{
		Username: "admin",
		Password: "admin",
	},
	HTTPClient: http.Client{
		Timeout: 10 * time.Second,
	}
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages