KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
tencentcloud
★ 34
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
kubernetes-csi-tencentcloud
:
kubernetes csi volume plugin for tencentcloud
certbot-dns-tencentcloud
:
No description available.
pulumi-tencentcloud
:
A TencentCloud Pulumi resource package, providing multi-language access to TencentCloud
tencentcloud-cls-sdk-go
:
cls log go sdk
tencentcloud-speech-sdk-go
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
tencentcloud
?
Download (.md)
Tencent Cloud DNS (DNSPod) module for Caddy =========================== This package contains a DNS provider module for [Caddy](https://github.com/caddyserver/caddy). It can be used to manage DNS records with Tencent Cloud (as is <https://www.tencentcloud.com> or <https://cloud.tencent.com>) accounts. ## Caddy module name ``` dns.providers.tencentcloud ``` ## Config examples To use this module for the ACME DNS challenge, [configure the ACME issuer in your Caddy JSON](https://caddyserver.com/docs/json/apps/tls/automation/policies/issuer/acme/) like so: ```json { "module": "acme", "challenges": { "dns": { "provider": { "name": "tencentcloud", "secret_id": "TENCENTCLOUD_SECRET_ID", "secret_key": "TENCENTCLOUD_SECRET_KEY" } } } } ``` or with the Caddyfile: ``` # globally acme_dns tencentcloud { secret_id {env.TENCENTCLOUD_SECRET_ID} secret_key {env.TENCENTCLOUD_SECRET_KEY} } ``` ``` # one site tls { dns tencentcloud { secret_id {env.TENCENTCLOUD_SECRET_ID} secret_key {env.TENCENTCLOUD_SECRET_KEY} } } ``` You can replace `{env.TENCENTCLOUD_SECRET_ID}`,`{env.TENCENTCLOUD_SECRET_KEY}` with the actual auth token in the `""` if you prefer to put it directly in your config instead of an environment variable. ## Authenticating See [the associated README in the libdns package](https://github.com/libdns/tencentcloud) for important information about credentials.