mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
dns_autodns
This commit is contained in:
parent
9dcb1e1c9c
commit
91d23be4e3
@ -39,6 +39,7 @@ func List() []Provider {
|
|||||||
getDNSAd(),
|
getDNSAd(),
|
||||||
getDNSAli(),
|
getDNSAli(),
|
||||||
getDNSAws(),
|
getDNSAws(),
|
||||||
|
getDNSAutoDNS(),
|
||||||
getDNSCf(),
|
getDNSCf(),
|
||||||
getDNSCloudns(),
|
getDNSCloudns(),
|
||||||
getDNSCx(),
|
getDNSCx(),
|
||||||
|
58
backend/internal/dnsproviders/dns_autodns.go
Normal file
58
backend/internal/dnsproviders/dns_autodns.go
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
package dnsproviders
|
||||||
|
|
||||||
|
const autoDNSSchema = `
|
||||||
|
{
|
||||||
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"user",
|
||||||
|
"password",
|
||||||
|
"context"
|
||||||
|
],
|
||||||
|
"additionalProperties": false,
|
||||||
|
"properties": {
|
||||||
|
"user": {
|
||||||
|
"type": "string",
|
||||||
|
"minLength": 1
|
||||||
|
},
|
||||||
|
"password": {
|
||||||
|
"type": "string",
|
||||||
|
"minLength": 1
|
||||||
|
},
|
||||||
|
"context": {
|
||||||
|
"type": "string",
|
||||||
|
"minLength": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`
|
||||||
|
|
||||||
|
func getDNSAutoDNS() Provider {
|
||||||
|
return Provider{
|
||||||
|
AcmeshName: "dns_autodns",
|
||||||
|
Schema: autoDNSSchema,
|
||||||
|
Fields: []providerField{
|
||||||
|
{
|
||||||
|
Name: "User",
|
||||||
|
Type: "text",
|
||||||
|
MetaKey: "user",
|
||||||
|
EnvKey: "AUTODNS_USER",
|
||||||
|
IsRequired: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "Password",
|
||||||
|
Type: "password",
|
||||||
|
MetaKey: "password",
|
||||||
|
EnvKey: "AUTODNS_PASSWORD",
|
||||||
|
IsRequired: true,
|
||||||
|
IsSecret: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "Context",
|
||||||
|
Type: "string",
|
||||||
|
MetaKey: "context",
|
||||||
|
EnvKey: "AUTODNS_CONTEXT",
|
||||||
|
IsRequired: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
@ -11,6 +11,9 @@
|
|||||||
"acmesh.dns_aws": {
|
"acmesh.dns_aws": {
|
||||||
"defaultMessage": "AWS Route53"
|
"defaultMessage": "AWS Route53"
|
||||||
},
|
},
|
||||||
|
"acmesh.dns_autodns": {
|
||||||
|
"defaultMessage": "autoDNS (InternetX)"
|
||||||
|
},
|
||||||
"acmesh.dns_cf": {
|
"acmesh.dns_cf": {
|
||||||
"defaultMessage": "Cloudflare"
|
"defaultMessage": "Cloudflare"
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user