Apache2 AWS ECS에서 Lts 암호화 SSL을 발행하려고 합니다.
도메인의 www 버전과 www가 아닌 버전이 모두 서버를 올바르게 가리키고 있음을 확인했지만 해결 방법을 알 수 없다는 오류가 표시됩니다.
Type: unauthorized
Detail: Invalid response from http://example.com/.well-known/acme-challenge/VR1csQL-Tp-tPMqMtmG1EcLWncgxMdov4MGZgq2RqQY
[3.210.25.136]: "<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML
2.0//EN\">\n<html><head>\n<title>404 Not
Found</title>\n</head><body>\n<h1>Not Found</h1>\n<p"
내 가상 호스트 파일은 다음과 같습니다
<VirtualHost my-ip-here:80>
ServerName example.com
ServerAlias www.example.com
DocumentRoot /var/www/example
<Directory /var/www/example>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
Alias /.well-known/acme-challenge/ /var/www/example/.well-known/acme-challenge/
<Directory /var/www/example/.well-known/acme-challenge/>
AllowOverride None
Require all granted
Satisfy Any
</Directory>
ErrorLog ${APACHE_LOG_DIR}/example.com-error.log
CustomLog ${APACHE_LOG_DIR}/example.com-access.log combined
</VirtualHost>