To fix these errors, please make sure that your domain name was entered correctly and the DNS A/AAAA record(s) for that domain contain(s) the right IP address.

複数ドメイン環境での Let’s encrypt 更新の際のエラー

原因はたぶん複数ドメインにしていて,非SSLアクセスすると全く別のドメインのドキュメントルートへリダイレクトされていたためと思われる,
すべての複数ドメインをSSL化してHSTS と.htaccessで強制SSLにしたところ解決

.htaccess

 
RewriteEngine On
RewriteBase /
# HTST
  RewriteCond %{HTTPS} off
  RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
 

Categories:

Tags: