このガイドに従いましたhttps://www.smarthomebeginner.com/traefik-reverse-proxy-tutorial-for-docker/ traefik を起動しましたが、ログに次のエラーが表示されます。
「ドメイン \"mydomain.net\" の ACME 証明書を取得できません: ドメイン [mydomain.net] の証明書を生成できません: acme: エラー -> 1 つ以上のドメインに問題がありました:\n[mydomain.net]トークンの提示エラー: cloudflare: TXT レコードの作成に失敗しました: makeRequest からのエラー: HTTP ステータス 400: コンテンツ \"{\"success\":false,\"errors\":[{\"code\":81057,\"メッセージ\":\"レコードは既に存在します。\"}],\"メッセージ\":[],\"結果\":null}\"\n",
「ドメイン \"test.mydomain.net\" の ACME 証明書を取得できません: ドメイン [test.mydomain.net] の証明書を生成できません: acme: エラー -> 1 つ以上のドメインに問題がありました:\n[ test.mydomain.net] トークンの提示エラー: cloudflare: TXT レコードの作成に失敗しました: makeRequest からのエラー: HTTP ステータス 400: content \"{\"success\":false,\"errors\":[{\"code\ ":81057,\"メッセージ\":\"レコードは既に存在します.\"}],\"メッセージ\":[],\"結果\":null}\"\n"
動的 DNS に Cloudflare を使用しています。@mydomain.net がルーター IP を指しています。最初は、Cloudflare で txt レコードを作成できないと思っていましたが、TXT レコード: _acme-challenge が作成されていることがわかります。私は何が欠けていますか?
更新:だから、以前のエラーではなく、近づいていると思います。今回は別のエラーが発生しています。誰かが助けてくれれば。何が起こっているのかわからない。
level=error msg="Unable to obtain ACME certificate for domains \"*.mydomain.net\" : unable to generate a certificate for the domains [*.mydomain.net]: acme: Error -> One or more domains had a problem:\n[my domain.net] time limit exceeded: last error: dial udp: lookup (serverhostname). on 127.0.0.11:53: server misbehaving\n"
以下は私のTraefik.toml構成です
#debug = true
logLevel = "ERROR" #DEBUG, INFO, WARN, ERROR, FATAL, PANIC
InsecureSkipVerify = true
defaultEntryPoints = ["https", "http"]
# WEB interface of Traefik - it will show web page with overview of frontend and backend configurations
#[web]
#address = ":8080"
# [web.auth.basic]
# usersFile = "/shared/.htpasswd"
[api]
entryPoint = "traefik"
dashboard = true
address = ":8080"
usersFile = "/shared/.htpasswd"
# Force HTTPS
[entryPoints]
[entryPoints.http]
address = ":80"
[entryPoints.http.redirect]
entryPoint = "https"
[entryPoints.https]
address = ":443"
# [entryPoints.https.auth.basic]
# usersFile = "/shared/.htpasswd"
[entryPoints.https.tls]
[file]
directory = "/etc/traefik/rules/"
watch = true
# Enable more detailed statistics.
[web.statistics]
# Number of recent errors logged.
recentErrors = 10
# Let's encrypt configuration
[acme]
email = "myemail address"
storage="/etc/traefik/acme/acme.json"
entryPoint = "https"
acmeLogging=true
onDemand = false #create certificate when container is created
#onHostRule = true #disable for wildcard domains
# Use a HTTP-01 acme challenge rather than TLS-SNI-01 challenge
#[acme.httpChallenge] #does not work with wildcard domains, use dns challenge
# entryPoint = "http" #does not work with wildcard domains
[acme.dnsChallenge]
provider = "cloudflare"
delayBeforeCheck = 0
[[acme.domains]]
main = "mydomain.net"
[[acme.domains]]
main = "*.mydomain.net"
# Connection to docker host system (docker.sock)
[docker]
endpoint = "unix:///var/run/docker.sock"
domain = "mydomain.net"
watch = true
# This will hide all docker containers that don't have explicitly
# set label to "enable"
exposedbydefault = false
ありがとう