🖥️ DNS over HTTPS Server

多协议 (DoH/DoT/TCP/UDP) | 多记录类型 | 隐私保护

📊 服务状态

🔗 DoH 端点:

🌐 上游 DNS 服务器

状态上游服务器协议区域响应时间

🔧 DNS 查询工具

📖 使用示例

# GET 请求 - A记录 (IPv4)
curl -H "accept: application/dns-json" \
  "https://litdpthf-awtsdwhc.hf.space/goyo123?name=google.com&type=A"

# GET 请求 - AAAA记录 (IPv6)
curl -H "accept: application/dns-json" \
  "https://litdpthf-awtsdwhc.hf.space/goyo123?name=google.com&type=AAAA"

# POST 请求 - JSON格式 (A记录)
curl -X POST -H "Content-Type: application/dns-json" \
  -d '{"name":"google.com","type":"A"}' \
  "https://litdpthf-awtsdwhc.hf.space/goyo123"

# POST 请求 - 表单格式 (A记录)
curl -X POST -H "Content-Type: application/x-www-form-urlencoded" \
  -d "name=google.com&type=A" \
  "https://litdpthf-awtsdwhc.hf.space/goyo123"

# 浏览器访问 (直接显示JSON)
https://litdpthf-awtsdwhc.hf.space/goyo123?name=google.com&type=A

# 浏览器配置 DoH
Chrome/Edge: 设置 → 隐私和安全 → 安全 → 使用安全 DNS → 自定义
填入: https://litdpthf-awtsdwhc.hf.space/goyo123