mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
dns_dreamhost
This commit is contained in:
parent
0a18432860
commit
e31b01b80e
@ -48,6 +48,7 @@ func List() []Provider {
|
|||||||
getDNSDgon(),
|
getDNSDgon(),
|
||||||
getDNSDNSimple(),
|
getDNSDNSimple(),
|
||||||
getDNSDp(),
|
getDNSDp(),
|
||||||
|
getDNSDreamhost(),
|
||||||
getDNSDuckDNS(),
|
getDNSDuckDNS(),
|
||||||
getDNSDyn(),
|
getDNSDyn(),
|
||||||
getDNSDynu(),
|
getDNSDynu(),
|
||||||
|
18
backend/internal/dnsproviders/dns_dreamhost.go
Normal file
18
backend/internal/dnsproviders/dns_dreamhost.go
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
package dnsproviders
|
||||||
|
|
||||||
|
func getDNSDreamhost() Provider {
|
||||||
|
return Provider{
|
||||||
|
AcmeshName: "dns_dreamhost",
|
||||||
|
Schema: commonKeySchema,
|
||||||
|
Fields: []providerField{
|
||||||
|
{
|
||||||
|
Name: "API Key",
|
||||||
|
Type: "password",
|
||||||
|
MetaKey: "api_key",
|
||||||
|
EnvKey: "DH_API_KEY",
|
||||||
|
IsRequired: true,
|
||||||
|
IsSecret: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
@ -38,6 +38,9 @@
|
|||||||
"acmesh.dns_dp": {
|
"acmesh.dns_dp": {
|
||||||
"defaultMessage": "DNSPod.cn"
|
"defaultMessage": "DNSPod.cn"
|
||||||
},
|
},
|
||||||
|
"acmesh.dns_dreamhost": {
|
||||||
|
"defaultMessage": "DreamHost"
|
||||||
|
},
|
||||||
"acmesh.dns_duckdns": {
|
"acmesh.dns_duckdns": {
|
||||||
"defaultMessage": "DuckDNS"
|
"defaultMessage": "DuckDNS"
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user