Caddy 怎么配置使用通配符的 acme dns 证书?

23次阅读

共计 353 个字符,预计需要花费 1 分钟才能阅读完成。

{
	http_port 80
	https_port 443

	log {
		output stdout
		level INFO
		format console
	}

	acme_dns acmedns {
		config {
			"example.com" {
				username ""password""
				subdomain ""fulldomain""
				server_url "https://auth.acme-dns.io"
			}
		}
	}
}

http://:80 {respond / "Hello World" 200}

# This works
example.com {respond / "Hi from Root" 200}

# This not work
web.example.com {respond / "Hi from Web" 200}

我想 web.example.com 也能使用 example.com 的通配证书

正文完
 0