mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
dns_zonomi
This commit is contained in:
parent
49da5d7acc
commit
3bfdc21256
@ -70,6 +70,7 @@ func List() []Provider {
|
|||||||
getDNSUnoeuro(),
|
getDNSUnoeuro(),
|
||||||
getDNSVscale(),
|
getDNSVscale(),
|
||||||
getDNSYandex(),
|
getDNSYandex(),
|
||||||
|
getDNSZonomi(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
18
backend/internal/dnsproviders/dns_zonomi.go
Normal file
18
backend/internal/dnsproviders/dns_zonomi.go
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
package dnsproviders
|
||||||
|
|
||||||
|
func getDNSZonomi() Provider {
|
||||||
|
return Provider{
|
||||||
|
AcmeshName: "dns_zonomi",
|
||||||
|
Schema: commonKeySchema,
|
||||||
|
Fields: []providerField{
|
||||||
|
{
|
||||||
|
Name: "API Key",
|
||||||
|
Type: "password",
|
||||||
|
MetaKey: "api_key",
|
||||||
|
EnvKey: "ZM_Key",
|
||||||
|
IsRequired: true,
|
||||||
|
IsSecret: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
@ -104,6 +104,9 @@
|
|||||||
"acmesh.dns_yandex": {
|
"acmesh.dns_yandex": {
|
||||||
"defaultMessage": "pdd.yandex.ru"
|
"defaultMessage": "pdd.yandex.ru"
|
||||||
},
|
},
|
||||||
|
"acmesh.dns_zonomi": {
|
||||||
|
"defaultMessage": "Zonomi"
|
||||||
|
},
|
||||||
"action.edit": {
|
"action.edit": {
|
||||||
"defaultMessage": "Edit"
|
"defaultMessage": "Edit"
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user