Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

pkg.para.party/certdx

Package Overview
Dependencies
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pkg.para.party/certdx

Go Modules
Version
v0.5.0
Version published
Created
Source

CertDX

Ask DeepWiki License: MIT

One ACME daemon for your whole fleet. CertDX runs ACME in a single place, caches the certificates, and hands them out to as many services as you need over HTTPS or gRPC SDS — so individual hosts never touch ACME, DNS APIs, or rate limits.

Highlights

  • One issuer, many consumerscertdx_server is the only thing that talks to Let's Encrypt or Google Trust Services. Every other host pulls finished certificates from it.
  • Wildcards out of the box — DNS-01 challenges via Cloudflare or Tencent Cloud, including *.example.com. One wildcard certificate is shared across all consumers, so you never hit CA rate limits no matter how many hosts or services need it.
  • Drop-in for what you already run:
    • Standalone agent that writes <name>.pem / <name>.key to disk and runs systemctl reload nginx (or any command).
    • Caddy plugin as a get_certificate provider.
    • Envoy via gRPC SDS — hot-swaps certificates with no restart.
    • Kubernetes secret updater that refreshes annotated kubernetes.io/tls secrets in-place — usable as a one-shot Job or CronJob.
    • Tencent Cloud updater that re-binds expiring certificates on CLB / CDN / WAF / TEO and friends.
  • Auth that fits the deployment — shared bearer token over HTTPS for simple setups, mTLS or gRPC SDS for everything else.
  • Resilient by design — clients support a standby server with automatic failover; the server keeps a local cache so restarts are cheap.

How it works

ACME CA  <----->  certdx_server  ----->  certdx_client       --(file + reload)-->  nginx / haproxy / ...
                       |          ----->  Caddy plugin        --(in-memory)----->  Caddy
                       +--------- ----->  Envoy (SDS)         --(hot reload)---->  Envoy listeners
                                  ----->  certdx_tools k8s    --(patch secret)-->  Kubernetes TLS secrets

The server is the only component talking to the ACME CA; everything else is a consumer.

Supported clients

ClientHow it works
certdx clientStandalone daemon. Writes cert/key files to disk and runs a reload command (e.g. systemctl reload nginx).
Caddy pluginCaddy get_certificate module — certificates stay in memory, no files.
Envoy (gRPC SDS)Envoy connects to the server's SDS endpoint directly; certificates are hot-swapped with no restart.
Kubernetes secret updatercertdx_tools kubernetes-certificate-updater patches annotated kubernetes.io/tls secrets in-place — run as a Job or CronJob.
certdx toolsGeneral-purpose CLI: inspect the cache, generate mTLS material, register Google ACME accounts, replace expiring Tencent Cloud / Kubernetes certificates, and more.

Quick start

Grab the latest release archive for your platform from GitHub releases, unpack it and move it into place:

tar -xzf certdx_linux_amd64.tar.gz
sudo mv certdx_linux_amd64 /opt/certdx

/opt/certdx now has certdx_server, certdx_client, certdx_tools, example configs under config/, and ready-to-use systemd units under systemd-service/. Edit config/server_config.toml and config/client_config.toml, then enable the units:

sudo cp /opt/certdx/systemd-service/certdx-server.service /etc/systemd/system/
sudo cp /opt/certdx/systemd-service/certdx-client.service /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable --now certdx-server certdx-client

Full walk-through: docs/quickstart.md.

Documentation

Quickstart5-minute server + client setup.
Setup guideAll deployment options (mTLS, gRPC SDS, Envoy, Caddy, K8s).
Server referenceEvery option in server_config.toml.
Client referenceEvery option in client_config.toml.
Caddy pluginCaddyfile syntax.
Toolscertdx_tools subcommands (cache, mTLS material, Tencent Cloud updater, …).

External: DeepWiki.

FAQs

Package last updated on 16 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts