mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
dns_acmedns
This commit is contained in:
parent
322048d5af
commit
523449f050
@ -36,6 +36,7 @@ func (p *Provider) GetAcmeEnvVars(meta interface{}) map[string]string {
|
|||||||
// List returns an array of providers
|
// List returns an array of providers
|
||||||
func List() []Provider {
|
func List() []Provider {
|
||||||
return []Provider{
|
return []Provider{
|
||||||
|
getDNSAcmeDNS(),
|
||||||
getDNSAd(),
|
getDNSAd(),
|
||||||
getDNSAli(),
|
getDNSAli(),
|
||||||
getDNSAws(),
|
getDNSAws(),
|
||||||
|
69
backend/internal/dnsproviders/dns_acmedns.go
Normal file
69
backend/internal/dnsproviders/dns_acmedns.go
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
package dnsproviders
|
||||||
|
|
||||||
|
const acmeDNSchema = `
|
||||||
|
{
|
||||||
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"api_url",
|
||||||
|
"user",
|
||||||
|
"password"
|
||||||
|
],
|
||||||
|
"additionalProperties": false,
|
||||||
|
"properties": {
|
||||||
|
"api_url": {
|
||||||
|
"type": "string",
|
||||||
|
"minLength": 4
|
||||||
|
},
|
||||||
|
"subdomain": {
|
||||||
|
"type": "string",
|
||||||
|
"minLength": 1
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"type": "string",
|
||||||
|
"minLength": 1
|
||||||
|
},
|
||||||
|
"password": {
|
||||||
|
"type": "string",
|
||||||
|
"minLength": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`
|
||||||
|
|
||||||
|
func getDNSAcmeDNS() Provider {
|
||||||
|
return Provider{
|
||||||
|
AcmeshName: "dns_acmedns",
|
||||||
|
Schema: acmeDNSchema,
|
||||||
|
Fields: []providerField{
|
||||||
|
{
|
||||||
|
Name: "Base URL",
|
||||||
|
Type: "text",
|
||||||
|
MetaKey: "api_url",
|
||||||
|
EnvKey: "ACMEDNS_BASE_URL",
|
||||||
|
IsRequired: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "Subdomain",
|
||||||
|
Type: "text",
|
||||||
|
MetaKey: "subdomain",
|
||||||
|
EnvKey: "ACMEDNS_SUBDOMAIN",
|
||||||
|
IsRequired: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "User",
|
||||||
|
Type: "text",
|
||||||
|
MetaKey: "user",
|
||||||
|
EnvKey: "ACMEDNS_USERNAME",
|
||||||
|
IsRequired: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "Password",
|
||||||
|
Type: "password",
|
||||||
|
MetaKey: "password",
|
||||||
|
EnvKey: "ACMEDNS_PASSWORD",
|
||||||
|
IsRequired: true,
|
||||||
|
IsSecret: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
@ -2,6 +2,9 @@
|
|||||||
"access-lists.title": {
|
"access-lists.title": {
|
||||||
"defaultMessage": "Access Lists"
|
"defaultMessage": "Access Lists"
|
||||||
},
|
},
|
||||||
|
"acmesh.dns_acmedns": {
|
||||||
|
"defaultMessage": "ACME DNS"
|
||||||
|
},
|
||||||
"acmesh.dns_ad": {
|
"acmesh.dns_ad": {
|
||||||
"defaultMessage": "Alwaysdata"
|
"defaultMessage": "Alwaysdata"
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user