ACME证书增加ZeroSSL支持

This commit is contained in:
GoEdgeLab
2021-10-03 13:09:49 +08:00
parent c7520397c3
commit c86889904b
28 changed files with 795 additions and 33 deletions

View File

@@ -0,0 +1,16 @@
Tea.context(function () {
this.selectedProvider = null
this.changeProvider = function () {
if (this.providerCode.length == 0) {
this.selectedProvider = null
return
}
let that = this
this.selectedProvider = this.providers.$find(function (k, v) {
return v.code == that.providerCode
})
}
this.changeProvider()
})