
Security News
RubyGems Adds Cooldown Feature to Bundler for Newly Published Gems
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.
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.
certdx_server is the only thing that
talks to Let's Encrypt or Google Trust Services. Every other host pulls
finished certificates from it.*.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.<name>.pem / <name>.key to disk and
runs systemctl reload nginx (or any command).get_certificate provider.kubernetes.io/tls
secrets in-place — usable as a one-shot Job or CronJob.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.
| Client | How it works |
|---|---|
| certdx client | Standalone daemon. Writes cert/key files to disk and runs a reload command (e.g. systemctl reload nginx). |
| Caddy plugin | Caddy 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 updater | certdx_tools kubernetes-certificate-updater patches annotated kubernetes.io/tls secrets in-place — run as a Job or CronJob. |
| certdx tools | General-purpose CLI: inspect the cache, generate mTLS material, register Google ACME accounts, replace expiring Tencent Cloud / Kubernetes certificates, and more. |
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.
| Quickstart | 5-minute server + client setup. |
| Setup guide | All deployment options (mTLS, gRPC SDS, Envoy, Caddy, K8s). |
| Server reference | Every option in server_config.toml. |
| Client reference | Every option in client_config.toml. |
| Caddy plugin | Caddyfile syntax. |
| Tools | certdx_tools subcommands (cache, mTLS material, Tencent Cloud updater, …). |
External: DeepWiki.
FAQs
Unknown package
Did you know?

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.

Security News
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.