Please fill out the fields below so we can help you better. Note: you must provide your domain name to get help. Domain names for issued certificates are all made public in Certificate Transparency logs (e.g. https://crt.sh/?q=example.com), so withholding your domain name here does not increase secrecy, but only makes it harder for us to provide help.
My domain is: edishardware.com
I ran this commands:
certbot --apache
1: edishardware.com
What would you like to do?
1: Attempt to reinstall this existing certificate
2: Renew & replace the certificate (may be subject to CA rate limits)
Select the appropriate number [1-2] then [enter] (press 'c' to cancel): 2
Renewing an existing certificate for edishardware.com
Deploying Certificate to VirtualHost /etc/apache2/sites-enabled/edishardware.com.conf
Redirecting vhost in /etc/apache2/sites-enabled/000-default.conf to ssl vhost in /etc/apache2/sites-enabled/edishardware.com.conf
Your existing certificate has been successfully renewed, and the new certificate
has been installed.
The new certificate covers the following domains: https://edishardware.com
It produced this output: The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
My web server is (include version): apache 2.4.56
The operating system my web server runs on is (include version): Debian 11
My hosting provider, if applicable, is: Wordpress.org
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): 1.12.0
/etc/apache2/sites-enabled/edishardware.com.conf:
<VirtualHost *:80>
DocumentRoot /var/www/html/
ServerName edishardware.com
ServerAlias www.edishardware.com
ServerAlias autodiscover.*
ServerAlias autoconfig.*
RewriteEngine on
RewriteCond %{HTTP_HOST} ^autoconfig. [NC]
RewriteRule ^ - [S=1]
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI}# [L,NE,R=permanent]
RewriteRule ^ /autoconfig.php [PT]
ProxyPass / http://127.0.0.1:8080/
ProxyPassReverse / http://127.0.0.1:8080/
ProxyPreserveHost On
ProxyAddHeaders On
RequestHeader set X-Forwarded-Proto "http"
RewriteCond %{SERVER_NAME} =edishardware.com [OR]
RewriteCond %{SERVER_NAME} =autodiscover.* [OR]
RewriteCond %{SERVER_NAME} =autoconfig.*
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
<VirtualHost *:443>
ServerName edishardware.com
ProxyPass / http://127.0.0.1:8080/
ProxyPassReverse / http://127.0.0.1:8080/
ProxyPreserveHost On
ProxyAddHeaders On
RequestHeader set X-Forwarded-Proto "https"
SSLCertificateFile /etc/letsencrypt/live/edishardware.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/edishardware.com/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>