惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
Y
Y Combinator Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
L
LangChain Blog
美团技术团队
N
Netflix TechBlog - Medium
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
博客园 - 司徒正美
爱范儿
爱范儿
D
DataBreaches.Net
月光博客
月光博客
U
Unit 42
B
Blog RSS Feed
Engineering at Meta
Engineering at Meta
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
MongoDB | Blog
MongoDB | Blog
腾讯CDC

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
HTTP-01, DNS-01, and DNS Delegation: What's the Differenc...
Fizee · 2026-06-18 · via DEV Community

Fizee

First-timers applying for an SSL certificate almost always get stuck at this step — picking a validation method. The UI shows HTTP-01, DNS-01, and sometimes DNS delegation. Three options, no explanation. Which one do you click?

What Does "Validation" Actually Mean?

Applying for an SSL certificate is essentially telling an organization called a CA (Certificate Authority): "This domain is mine — please issue me a certificate."

But the CA doesn't know you. It needs you to prove that you actually control the domain. Validation is how that works: the CA gives you a challenge to complete, and once you complete it, the CA trusts that you own the domain.

HTTP-01 and DNS-01 are two different types of challenges. DNS delegation is more of a helper strategy built on top of DNS-01. Let's go through each one.

HTTP-01: Drop a File on Your Web Server

How It Works

The CA says: "Put a file with specific content at http://your-domain/.well-known/acme-challenge/, and I'll go fetch it. If I get the right response, you're verified."

You put the file in place, the CA makes an HTTP request to that URL, gets the expected content, and the certificate gets issued.

Pros

  • Straightforward — as long as you control the web root, just drop a file
  • No DNS changes needed, no DNS access required

Limitations

  • Your server must be publicly accessible on the internet
  • Only works for single domains — no wildcard certificates (e.g. *.example.com)
  • Can be unreliable in certain network environments, since most CAs are overseas; restricted networks like government clouds may block or slow down the HTTP request, causing validation to fail

Who It's For

Websites hosted on a public-facing server, where you don't need a wildcard cert and don't have access to manage DNS.

DNS-01: Add a TXT Record to Your DNS

How It Works

The CA says: "Add a TXT record to your domain with this specific value, and I'll look it up in DNS. If it's there, you're verified."

You go into your DNS management panel (Cloudflare, Route 53, GoDaddy, etc.) and add:

_acme-challenge.your-domain.  TXT  "the-random-value-from-CA"

The CA queries DNS, finds the record, and validation passes.

Pros

  • Your server doesn't need to be publicly accessible — works for internal/private servers
  • Supports wildcard certificates — something HTTP-01 can't do
  • Generally more reliable — DNS propagation is more predictable than HTTP requests across varied network environments

Limitations

  • You need access to manage DNS for the domain

Who It's For

Anyone who needs a wildcard certificate, runs servers on a private network, or doesn't want to expose port 80.

Side by Side

HTTP-01 DNS-01
Where you act Drop a file on your server Add a TXT record in DNS
Server needs public internet Yes No
Wildcard certificate support
Network sensitivity Higher — especially when CA is overseas Lower — DNS lookups are generally stable
Technical complexity Higher — requires server config, open ports, redirect handling Lower — just a DNS record change

DNS Delegation: Taking DNS-01 Further

Now that we've covered both validation methods, let's talk about DNS delegation — this is not a third validation method. It's an enhancement built on top of DNS-01.

DNS-01 itself isn't complicated, but if you want automatic renewal, your tooling needs to be able to write a new TXT record every time the certificate renews — which means it needs API access to your DNS provider.

That's where two real-world problems come up.

  1. Not every DNS provider has an API. A lot of domains are hosted with smaller or older providers that simply don't offer one. That means every renewal requires manually logging into the DNS panel and updating the record — every 90 days, without fail. Easy to forget, easy to mess up.

  2. Even if your provider has an API, the access scope is too broad. Your main domain's DNS controls everything — all your subdomains, mail records, the works. Handing that API key to a cert tool means the tool could theoretically modify any record on your domain. If the key leaks or the tool misbehaves, the entire domain's DNS is at risk.

DNS delegation exists to solve both problems at once.

How DNS Delegation Solves This

You create a dedicated subdomain just for ACME validation:

_acme-challenge.example.com

Then, in your main domain's DNS, you add a CNAME pointing that address to a separate, purpose-built DNS zone — one with tightly scoped permissions:

_acme-challenge.example.com.  CNAME  _acme-challenge.example.com.acme-dns.io

From that point on, all ACME TXT records get written to that dedicated zone. When the CA queries _acme-challenge.example.com, it follows the CNAME and finds the right TXT record. Validation passes.

Why This Is Better

  • Your main DNS only needs one CNAME added once — never touched again, no matter how many times the certificate renews
  • The API key your cert tool holds is scoped only to that small dedicated zone — even if it leaks, the damage is limited to that one validation subdomain
  • It doesn't matter what provider hosts your main DNS, or whether it has an API at all — the validation side runs on its own API-capable service independently

A practical example: CertFlow supports DNS delegation — configure it once and it handles automatic renewals without ever needing access to your main DNS again.

Who It's For

  • You want automatic renewal but your main DNS provider doesn't offer an API
  • Your provider has an API, but you don't want to hand over full DNS access to a cert tool
  • You're managing renewals across multiple domains and want a unified, lower-risk setup

So Which One Should You Use?

These aren't mutually exclusive — pick based on your situation:

  • Need a wildcard certificate → Must use DNS-01 or DNS delegation
  • Have DNS access → DNS-01 is simpler and more reliable
  • No DNS access → HTTP-01 is your only option, but watch out for network issues and server configuration gotchas

Once you understand what's actually happening under the hood, the choice stops being confusing.

If you want to learn more about choosing and deploying SSL certificates, check out our earlier post on free vs. paid SSL certificates for a more detailed breakdown.

And if you want to get a free certificate with automatic renewal, auto-deployment, and expiry alerts all in one place, CertFlow has you covered.


Apply, Renew, and Monitor SSL Certificates for Free with CertFlow

CertFlow supports free issuance of single-domain and wildcard SSL certificates, with automatic renewal, auto-deployment, and expiry monitoring alerts. Built for individual developers, small teams, and multi-subdomain projects.

Get Started with CertFlow