mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-02-02 17:58:13 -05:00
dns_namesilo
This commit is contained in:
parent
5729dddaf9
commit
9dcb1e1c9c
@ -60,6 +60,7 @@ func List() []Provider {
|
|||||||
getDNSLua(),
|
getDNSLua(),
|
||||||
getDNSMe(),
|
getDNSMe(),
|
||||||
getDNSNamecom(),
|
getDNSNamecom(),
|
||||||
|
getDNSNamesilo(),
|
||||||
getDNSServercow(),
|
getDNSServercow(),
|
||||||
getDNSOne(),
|
getDNSOne(),
|
||||||
getDNSPDNS(),
|
getDNSPDNS(),
|
||||||
|
18
backend/internal/dnsproviders/dns_namesilo.go
Normal file
18
backend/internal/dnsproviders/dns_namesilo.go
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
package dnsproviders
|
||||||
|
|
||||||
|
func getDNSNamesilo() Provider {
|
||||||
|
return Provider{
|
||||||
|
AcmeshName: "dns_namesilo",
|
||||||
|
Schema: commonKeySchema,
|
||||||
|
Fields: []providerField{
|
||||||
|
{
|
||||||
|
Name: "API Key",
|
||||||
|
Type: "password",
|
||||||
|
MetaKey: "api_key",
|
||||||
|
EnvKey: "Namesilo_Key",
|
||||||
|
IsRequired: true,
|
||||||
|
IsSecret: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
@ -74,6 +74,9 @@
|
|||||||
"acmesh.dns_namecom": {
|
"acmesh.dns_namecom": {
|
||||||
"defaultMessage": "Name.com"
|
"defaultMessage": "Name.com"
|
||||||
},
|
},
|
||||||
|
"acmesh.dns_namesilo": {
|
||||||
|
"defaultMessage": "Namesilo.com"
|
||||||
|
},
|
||||||
"acmesh.dns_nsone": {
|
"acmesh.dns_nsone": {
|
||||||
"defaultMessage": "NS1.com"
|
"defaultMessage": "NS1.com"
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user