1

Am trying to install a certificate for my webapp, which is deployed in my Amazon AWS.

 ./certbot-auto certonly --standalone --standalone-supported-challenges http-01 -d www.mywebsite.com --debug

when I run the above command, I get the following response

 The following errors were reported by the server:

   Domain: www.mywebsite.com
   Type:   unauthorized
   Detail: Invalid response from
   http://www.mywebsite.com/.well-known/acme-challenge/PoX30b9dlmVuf-iU6zcNOo7_l7FaYTiJMgjHR4td8p4:
   "<html><head><title>Apache Tomcat/7.0.70 - Error
   report</title><style><!--H1
   {font-family:Tahoma,Arial,sans-serif;color:white;bac"

Am trying to point to the app which I deployed in Apache tomcat server. I could see the .well-known folder is getting created but the folder is completely empty.

Any Light on this?

4

2 に答える 2

2

スタンドアロン サーバーが必要な IP/ポートにバインドしていないことは明らかです。そのため、エラー メッセージには Tomcat からの応答が含まれています。Tomcatサーバーを停止してから実行する必要があるため、 certbotcertbot-auto --standaloneの組み込みWebサーバーが応答を提供できます。

于 2016-12-28T09:32:00.277 に答える