mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-01-24 05:38:15 -05:00
19 lines
330 B
Go
19 lines
330 B
Go
|
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,
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
}
|