Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

caddy-https-troubleshoot球童 https 故障排除

Agent Skill

caddy-https-troubleshoot 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

194

周安装

8

GitHub Stars

1

下载量

63
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:caddy-https-troubleshoot(球童 https 故障排除)
来源仓库:https://github.com/dawiddutoit/custom-claude
仓库路径:skills/caddy-https-troubleshoot
安装命令:
npx skills add https://github.com/dawiddutoit/custom-claude --skill caddy-https-troubleshoot
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dawiddutoit/custom-claude --skill caddy-https-troubleshoot

简介

caddy-https-troubleshoot 系统化诊断 Caddy 的 HTTPS 与 SSL 证书问题,定位 DNS 与挑战失败原因。

  • 适用于遭遇证书签发失败、连接被拒或混合内容警告的用户,提供分步排查指引。
  • 包含 API 密钥验证、Caddyfile 语法检查与日志分析等实用工具链。
  • 使用前请准备好 Cloudflare 账户与 API Token,并开放必要的出站网络权限。
  • 若问题持续存在,建议结合 caddy reload 与重启操作,并查看官方文档补充信息。

SKILL.md

Troubleshoot HTTPS Skill

Systematic diagnosis and resolution of HTTPS/SSL certificate issues in the Caddy reverse proxy with Cloudflare DNS-01 challenge.

Quick Start

Run the diagnostic script to identify issues:

/home/dawiddutoit/projects/network/.claude/skills/troubleshoot-https/scripts/diagnose-https.sh

Or follow the step-by-step diagnosis in Instructions.

Table of Contents

  1. When to Use This Skill
  2. What This Skill Does
  3. Instructions

- 3.1 Check API Key Configuration - 3.2 Verify Cloudflare DNS Plugin - 3.3 Analyze Caddy Logs - 3.4 Validate Caddyfile Syntax - 3.5 Test Certificate Validity - 3.6 Diagnose Specific Error - 3.7 Apply Fix

  1. Supporting Files
  2. Expected Outcomes
  3. Common Error Reference
  4. Requirements
  5. Red Flags to Avoid

When to Use This Skill

Explicit Triggers:

  • "HTTPS not working"
  • "SSL certificate error"
  • "Certificate not obtained"
  • "Caddy keeps restarting"
  • "Fix HTTPS certificates"
  • "Invalid format for Authorization header"

Implicit Triggers:

  • Browser shows "Your connection is not private"
  • Services accessible via HTTP but not HTTPS
  • Caddy container in restart loop
  • New domain not getting certificate

Debugging Triggers:

  • "Why is my certificate expired?"
  • "Why can't Caddy get a certificate?"
  • "Cloudflare DNS challenge failing"

What This Skill Does

  1. Checks API Key - Verifies CLOUDFLARE_API_KEY is set and passed to container
  2. Verifies Plugin - Confirms Cloudflare DNS plugin is compiled into Caddy
  3. Analyzes Logs - Searches for certificate errors in Caddy logs
  4. Validates Config - Tests Caddyfile syntax
  5. Tests Certificates - Checks certificate validity for each domain
  6. Identifies Error - Matches symptoms to known issues
  7. Provides Fix - Gives specific commands to resolve the issue

Instructions

3.1 Check API Key Configuration

Step 1: Verify API key is set in.env

grep "CLOUDFLARE_API_KEY" /home/dawiddutoit/projects/network/.env | head -1

Expected: CLOUDFLARE_API_KEY="Xv5MOdOT... (starts with alphanumeric, not v4:)

Step 2: Verify API key is passed to container

docker exec caddy env | grep CLOUDFLARE_API_KEY

Expected: Shows the API key value (not empty)

If empty or missing:

# Recreate container to pick up .env changes
docker compose -f /home/dawiddutoit/projects/network/docker-compose.yml up -d --force-recreate caddy

Key distinction:

  • API Token format: Xv5MOdOT... (alphanumeric string) - CORRECT
  • Global API Key format: v4:... or long hex string - WRONG

3.2 Verify Cloudflare DNS Plugin

docker exec caddy caddy list-modules | grep cloudflare

Expected: dns.providers.cloudflare

If not present: Plugin not compiled into Caddy. Rebuild:

cd /home/dawiddutoit/projects/network && \
docker compose build --no-cache caddy && \
docker compose up -d --force-recreate caddy

3.3 Analyze Caddy Logs

Check for certificate-related messages:

docker logs caddy 2>&1 | grep -i -E "certificate|error|failed|invalid" | tail -30

Look for success messages:

docker logs caddy 2>&1 | grep "certificate obtained successfully"

Expected for each domain: certificate obtained successfully {"identifier": "domain.temet.ai"}

3.4 Validate Caddyfile Syntax

docker exec caddy caddy validate --config /etc/caddy/Caddyfile

Expected: Valid configuration (no errors)

If syntax error:

  1. Read the Caddyfile to identify the error
  2. Fix the syntax issue
  3. Reload Caddy

3.5 Test Certificate Validity

Test a single domain:

echo | openssl s_client -servername pihole.temet.ai -connect pihole.temet.ai:443 2>/dev/null | openssl x509 -noout -dates -issuer

Expected output:

notBefore=<date>
notAfter=<date>
issuer=C = US, O = Let's Encrypt, CN = R3

Test all domains:

for domain in pihole jaeger langfuse sprinkler ha; do
  echo "=== $domain.temet.ai ==="
  echo | openssl s_client -servername $domain.temet.ai -connect $domain.temet.ai:443 2>/dev/null | \
    openssl x509 -noout -dates 2>&1 || echo "FAILED to get certificate"
  echo
done

3.6 Diagnose Specific Error

Match error message to diagnosis:

Error MessageDiagnosisGo to Fix
Invalid format for Authorization headerUsing Global API Key instead of API TokenFix A
missing API tokenEnvironment variable not setFix B
unknown directive 'dns'Cloudflare plugin not compiledFix C
certificate obtain errorRate limit or DNS propagationFix D
403 Forbidden from CloudflareAPI token lacks permissionsFix E
Container restart loopCaddyfile syntax errorFix F

3.7 Apply Fix

Fix A: Wrong API Key Type

The error "Invalid format for Authorization header" means you're using the Global API Key instead of an API Token.

  1. Create new API Token:

- Go to: https://dash.cloudflare.com/profile/api-tokens - Click "Create Token" - Select template: "Edit zone DNS" - Zone Resources: Include -> Specific zone -> temet.ai - Click "Continue to summary" -> "Create Token"

  1. Update.env: # Edit.env and replace CLOUDFLARE_API_KEY with the new token nano /home/dawiddutoit/projects/network/.env
  2. Recreate Caddy: docker compose -f /home/dawiddutoit/projects/network/docker-compose.yml up -d --force-recreate caddy
  3. Verify: docker logs caddy 2>&1 | grep "certificate obtained successfully"

Fix B: Environment Variable Not Set

  1. Verify.env has the key: grep CLOUDFLARE_API_KEY /home/dawiddutoit/projects/network/.env
  2. Verify docker-compose.yml passes it: grep -A5 "caddy:" /home/dawiddutoit/projects/network/docker-compose.yml | grep CLOUDFLARE
  3. Recreate container: docker compose -f /home/dawiddutoit/projects/network/docker-compose.yml up -d --force-recreate caddy

Fix C: Cloudflare Plugin Not Compiled

cd /home/dawiddutoit/projects/network && \
docker compose build --no-cache caddy && \
docker compose up -d --force-recreate caddy

Build takes approximately 5 minutes on Raspberry Pi.

Fix D: Rate Limit or DNS Propagation

  1. Wait 5 minutes for DNS propagation
  2. Restart Caddy: docker compose -f /home/dawiddutoit/projects/network/docker-compose.yml restart caddy
  3. If still failing, check Let's Encrypt rate limits:

- Limit: 50 certificates per domain per week - Check: https://crt.sh/?q=temet.ai

Fix E: API Token Missing Permissions

  1. Go to: https://dash.cloudflare.com/profile/api-tokens
  2. Find your token and click "Edit"
  3. Verify permissions:

- Zone -> DNS -> Edit (required) - Zone Resources -> Include -> Specific zone -> temet.ai

  1. If missing, create new token with correct permissions

Fix F: Caddyfile Syntax Error

  1. Check error in logs: docker logs caddy 2>&1 | tail -50
  2. Validate Caddyfile: docker exec caddy caddy validate --config /etc/caddy/Caddyfile
  3. Common syntax issues:

- Missing closing braces } - Invalid directive names - Wrong environment variable syntax

  1. Fix the Caddyfile and reload: docker exec caddy caddy reload --config /etc/caddy/Caddyfile

Supporting Files

FilePurpose
references/reference.mdComplete error reference, API token creation guide, rate limit details
scripts/diagnose-https.shAutomated diagnostic script

Expected Outcomes

Success:

  • All diagnostic checks pass
  • certificate obtained successfully for each domain
  • HTTPS working with valid Let's Encrypt certificates
  • Certificate shows issuer: C = US, O = Let's Encrypt

Partial Success:

  • Issue identified but fix requires manual action (e.g., create new API token)
  • Certificate pending (DNS propagation in progress)

Failure Indicators:

  • API key format is wrong (Global API Key vs API Token)
  • Cloudflare plugin not compiled into Caddy
  • Caddyfile syntax errors blocking startup
  • Let's Encrypt rate limit exceeded

Common Error Reference

ErrorCauseQuick Fix
Invalid format for Authorization headerWrong API key type (Global vs Token)Create new API Token with "Edit zone DNS" template
missing API tokenEnv var not passed to containerdocker compose up -d --force-recreate caddy
unknown directive 'dns'Plugin not compileddocker compose build --no-cache caddy
certificate obtain errorRate limit or DNS delayWait 5 minutes, restart Caddy
403 ForbiddenToken lacks DNS edit permissionCheck/update token permissions
Container restart loopCaddyfile syntax errorCheck logs, fix syntax, reload

Requirements

  • Docker running with Caddy container
  • Valid Cloudflare API Token with "Edit zone DNS" permission
  • .env file with CLOUDFLARE_API_KEY set
  • Internet access for Cloudflare API calls

Red Flags to Avoid

  • Do not use Global API Key (format: v4:... or long hex) - use API Token instead
  • Do not skip verifying the plugin is compiled before troubleshooting further
  • Do not delete caddy_data volume unless absolutely necessary (certificates stored there)
  • Do not exceed Let's Encrypt rate limits (50 certs/domain/week)
  • Do not forget to recreate container after.env changes
  • Do not use --no-verify to bypass certificate errors
  • Do not commit API tokens to git

Notes

  • Certificates are stored in Docker volume network_caddy_data
  • Certificates auto-renew 30 days before expiry
  • DNS-01 challenge allows certificates for internal-only services
  • Caddy checks renewals every 12 hours
  • Build with --no-cache if plugin changes aren't taking effect
  • API Token (not Global API Key) is required for Caddy Cloudflare DNS plugin

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.03%
按下载量换算22

Claude

34.22%
按下载量换算22

Cursor

18.71%
按下载量换算12

Gemini CLI

9.65%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills