I did not see any error messages.
I now have a key in my /etc/letsencrypt/keys directory and a certificate in my /etc/letsencrypt/csr directory
Attempting to see my site at https://ophed.net results in a āYour connection is not privateā error.
Following to the site anyway leads me to the Apache2 Ubuntu Default Page.
I can still reach my site at http://ophed.net
BTW itās a Drupal based site
Was there any output at all from this command, or did it just return immediately?
These aren't useful; the item in the /etc/letsencrypt/csr is a certificate signing request rather than a certificate. Do you have an /etc/letsencrypt/live directory?
Obtaining a new certificate
Performing the following challenges:
http-01 challenge for ophed.com
http-01 challenge for ophed.net
http-01 challenge for www.ophed.com
http-01 challenge for www.ophed.net
http-01 challenge for pittlions.org
http-01 challenge for www.pittlions.org
Waiting for verificationā¦
Cleaning up challenges
Created an SSL vhost at /etc/apache2/sites-available/ophed.net-le-ssl.conf
Deploying Certificate to VirtualHost /etc/apache2/sites-available/ophed.net-le-ssl.conf
Enabling available site: /etc/apache2/sites-available/ophed.net-le-ssl.conf
Deploying Certificate to VirtualHost /etc/apache2/sites-available/ophed.net-le-ssl.conf
Deploying Certificate to VirtualHost /etc/apache2/sites-available/ophed.net-le-ssl.conf
Deploying Certificate to VirtualHost /etc/apache2/sites-available/ophed.net-le-ssl.conf
Created an SSL vhost at /etc/apache2/sites-available/pittlions.org-le-ssl.conf
Deploying Certificate to VirtualHost /etc/apache2/sites-available/pittlions.org-le-ssl.conf
Enabling available site: /etc/apache2/sites-available/pittlions.org-le-ssl.conf
Deploying Certificate to VirtualHost /etc/apache2/sites-available/pittlions.org-le-ssl.conf
Please choose whether or not to redirect HTTP traffic to HTTPS, removing HTTP access.
1: No redirect - Make no further changes to the webserver configuration.
2: Redirect - Make all requests redirect to secure HTTPS access. Choose this for
new sites, or if youāre confident your site works on HTTPS. You can undo this
change by editing your web serverās configuration.
Select the appropriate number [1-2] then [enter] (press ācā to cancel): 2
Redirecting vhost in /etc/apache2/sites-enabled/ophed.net.conf to ssl vhost in /etc/apache2/sites-available/ophed.net-le-ssl.conf
Redirecting vhost in /etc/apache2/sites-enabled/pittlions.org.conf to ssl vhost in /etc/apache2/sites-available/pittlions.org-le-ssl.conf
Congratulations! Your certificate and chain have been saved at:
/etc/letsencrypt/live/ophed.com/fullchain.pem
Your key file has been saved at:
/etc/letsencrypt/live/ophed.com/privkey.pem
Your cert will expire on 2018-08-29. To obtain a new or tweaked
version of this certificate in the future, simply run certbot again
with the ācertonlyā option. To non-interactively renew all of
your certificates, run ācertbot renewā
If you like Certbot, please consider supporting our work by:
The other names on your certificate (www.ophed.net, pittlions.org etc) all seem to be working; only ophed.net is still returning the wrong certificate.
Maybe you have a second VirtualHost for that server name?
Check the output of apachectl -S
You canāt access the site via HTTP because itās redirecting to HTTPS (since you selected 2); of course fixing the HTTPS version will fix that, but if you want to access HTTP before then, you can remove the redirect - itās a few lines certbot added at the end of your HTTP virtual host config.
VirtualHost configuration:
*:443 is a NameVirtualHost
default server ophed.net (/etc/apache2/sites-enabled/default-ssl.conf:2)
port 443 namevhost ophed.net (/etc/apache2/sites-enabled/default-ssl.conf:2)
port 443 namevhost ophed.net (/etc/apache2/sites-enabled/ophed.net-le-ssl.conf:2)
alias www.ophed.net
alias ophed.com
alias www.ophed.com
port 443 namevhost pittlions.org (/etc/apache2/sites-enabled/pittlions.org-le-ssl.conf:2)
alias www.pittlions.org
*:80 is a NameVirtualHost
default server aupomse.org (/etc/apache2/sites-enabled/aupomse.org.conf:1)
port 80 namevhost aupomse.org (/etc/apache2/sites-enabled/aupomse.org.conf:1)
alias www.aupomse.org
port 80 namevhost ophed.net (/etc/apache2/sites-enabled/ophed.net.conf:1)
alias www.ophed.net
alias ophed.com
alias www.ophed.com
port 80 namevhost ophed.us (/etc/apache2/sites-enabled/ophed.us.conf:1)
alias www.ophed.us
port 80 namevhost pittlions.org (/etc/apache2/sites-enabled/pittlions.org.conf:1)
alias www.pittlions.org