Hello
My domain is: dropin.today
I ran this command: /opt/certbot/bin/certbot certonly
It produced this output:
Saving debug log to /var/log/letsencrypt/letsencrypt.log
Python 3.8 support will be dropped in the next planned re
lease of Certbot - please upgrade your Python version.
How would you like to authenticate with the ACME CA?
1: Runs an HTTP server locally which serves the necessary
validation files under
the /.well-known/acme-challenge/ request path. Suitable i
f there is no HTTP
server already running. HTTP challenge only (wildcards no
t supported).
(standalone)
2: Saves the necessary validation files to a .well-known/
acme-challenge/
directory within the nominated webroot path. A separate H
TTP server must be
running and serving files from the webroot path. HTTP cha
llenge only (wildcards
not supported). (webroot)
Select the appropriate number [1-2] then [enter] (press '
c' to cancel): 2
Please enter the domain name(s) you would like on your ce
rtificate (comma and/or
space separated) (Enter 'c' to cancel): dropin.today
Requesting a certificate for dropin.today
Input the webroot for dropin.today: (Enter 'c' to cancel)
: /var/www/dropin.today/public
Certbot failed to authenticate some domains (authenticato
r: webroot). The Certificate Authority reported these pro
blems:
Domain: dropin.today
Type: connection
Detail: 104.196.57.33: Fetching http://dropin.today/.we
ll-known/acme-challenge/wW2JsyTzIpeGa68t14PtEkeE8AanAIXUR
zbU5fqB6eo: Connection refused
Hint: The Certificate Authority failed to download the te
mporary challenge files created by Certbot. Ensure that t
he listed domains serve their content from the provided -
-webroot-path/-w and that files created there can be down
loaded from the internet.
Some challenges have failed.
Ask for help or search for solutions at https://community
.letsencrypt.org. See the logfile /var/log/letsencrypt/le
tsencrypt.log or re-run Certbot with -v for more details.
root@drop-in-back-end-server:~#
My web server is (include version):
nginx version: nginx/1.14.0 (Ubuntu)
The operating system my web server runs on is (include version):
lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 18.04.6 LTS
Release: 18.04
Codename: bionic
My hosting provider, if applicable, is:
I can login to a root shell on my machine (yes or no, or I don't know):
Yes
I'm using a control panel to manage my site (no, or provide the name and version of the control panel):
No
The version of my client is (e.g. output of certbot --version
or certbot-auto --version
if you're using Certbot
certbot 3.0.1
root@drop-in-back-end-server:~# cat /etc/nginx/sites-enab
led/default
server {
listen 80;
server_name dropin.today www.dropin.today;
root /var/www/dropin.today/public;
index index.html;
location / {
try_files $uri $uri/ =404;
}
}root@drop-in-back-end-server:~#