mirror of
https://github.com/certimate-go/certimate.git
synced 2026-04-26 13:15:55 +03:00
[PR #925] [CLOSED] feat: support provider joohoi/acme-dns #1076
Labels
No labels
announcement
backlog
bug
declined
documentation
duplicate
enhancement
good first issue
good first issue
help wanted
invalid
pull-request
question
stale
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/certimate#1076
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/certimate-go/certimate/pull/925
Author: @orangejx
Created: 8/14/2025
Status: ❌ Closed
Base:
next← Head:wlms-dev📝 Commits (5)
fb43d84UI 增加 ACME-DNS, 由于ACME-DNS 缺失 LOGO, 因此使用 ACME HTTP Req 的 LOGO 替代.7d1990a调整 i18n/locales/en|zh/nls.access.json/access.from 语言文件中 acmedns 的顺序位置, 按照 ASCII 码排序.8761898增加 ACMEDNS 至 ACME_DNS01_PROVIDERS & acmeDns01ProvidersMap in File ui/src/domain/provider.ts.d7ced02add new DNS-01 Provider ACMEDNS & import package github.com/nrdcg/goacmedns.26ded03format code.📊 Changes
15 files changed (+183 additions, -0 deletions)
View changed files
📝
go.mod(+1 -0)📝
go.sum(+2 -0)📝
internal/applicant/providers.go(+16 -0)📝
internal/domain/access.go(+6 -0)📝
internal/domain/provider.go(+2 -0)➕
pkg/core/ssl-applicator/acme-dns01/providers/acmedns/acmedns.go(+35 -0)➕
ui/public/imgs/providers/acmedns.svg(+2 -0)📝
ui/src/components/access/AccessForm.tsx(+3 -0)➕
ui/src/components/access/AccessFormACMEDNSConfig.tsx(+85 -0)📝
ui/src/domain/access.ts(+7 -0)📝
ui/src/domain/provider.ts(+4 -0)📝
ui/src/i18n/locales/en/nls.access.json(+9 -0)📝
ui/src/i18n/locales/en/nls.provider.json(+1 -0)📝
ui/src/i18n/locales/zh/nls.access.json(+9 -0)📝
ui/src/i18n/locales/zh/nls.provider.json(+1 -0)📄 Description
feat: 增加了对 joohoi/acme-dns 的驱动实现:
http://LOGO 替代.ACME-DNS API URL,ACME-DNS Credentials URL PATH及ACME-DNS Credentials Local PathACME-DNS API URL(ACME-DNS 端点地址, *必填项)ACME-DNS Credentials URL PATH(凭据的 URL 位置, *必填项, 和ACME-DNS Credentials Local Path至少且只能填写一个)ACME-DNS Credentials Local Path(凭据的本地位置, *必填项, 和ACME-DNS Credentials URL PATH至少且只能填写一个)凭据文件为
JSON格式, 且需且至少具有以下字段:usernamepasswordfulldomainsubdomainurl如果凭据文件内需含有多个域的凭据信息, 则:
example.comusernamepasswordfulldomainsubdomainurlexample.netusernamepasswordfulldomainsubdomainurl即可.
关联 Issue : https://github.com/certimate-go/certimate/issues/909
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.