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. crt.sh | 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: torei.stream.raindrop.ink
I ran this command: sudo certbot
It produced this output: Congratulations! You have successfully enabled https://torei.stream.raindrop.ink
My web server is (include version): Apache 2.4.46
The operating system my web server runs on is (include version): Linux ferio.raindrop.works 5.4.0-88-generic #99-Ubuntu SMP Thu Sep 23 17:29:00 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
My hosting provider, if applicable, is: Self Host
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 0.40.0
Certbot seems to have built the certificate correctly, but I can't open the page. On Chrome, I get the "NET::ERR_CERTIFICATE_TRANSPARENCY_REQUIRED", and HSTS won't allow me to bypass the error
No errors appear in the apache error log (the last comment was from ten minutes before when it provided the following information from certbot's Acme tests:
[Sun Oct 10 21:17:07.977476 2021] [proxy:error] [pid 375054:tid 139931217282816] (20014)Internal error (specific information not available): [client 66.133.109.36:61142] AH01084: pass request body failed to 127.0.0.1:444 (localhost), referer: http://torei.stream.raindrop.ink/.well-known/acme-challenge/iowUVVPLrT7aTaprIZMpWD6b-7G7wp_Xzmsfldwyxn0
[Sun Oct 10 21:17:07.977588 2021] [proxy:error] [pid 375054:tid 139931217282816] [client 66.133.109.36:61142] AH00898: Error during SSL Handshake with remote server returned by /.well-known/acme-challenge/iowUVVPLrT7aTaprIZMpWD6b-7G7wp_Xzmsfldwyxn0, referer: http://torei.stream.raindrop.ink/.well-known/acme-challenge/iowUVVPLrT7aTaprIZMpWD6b-7G7wp_Xzmsfldwyxn0
[Sun Oct 10 21:17:07.977603 2021] [proxy_http:error] [pid 375054:tid 139931217282816] [client 66.133.109.36:61142] AH01097: pass request body failed to 127.0.0.1:444 (localhost) from 66.133.109.36 (), referer: http://torei.stream.raindrop.ink/.well-known/acme-challenge/iowUVVPLrT7aTaprIZMpWD6b-7G7wp_Xzmsfldwyxn0
The conf file for the particular domain (other configs are working properly for this domain and others)
ServerName torei.stream.raindrop.ink
ServerAlias torei.stream.raindrop.ink
LogLevel warn
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPreserveHost On
ProxyPass / http://127.0.0.1:90/
ProxyPassReverse / http://127.0.0.1:90/
RewriteEngine on
RewriteCond %{SERVER_NAME} =torei.stream.raindrop.ink
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerName torei.stream.raindrop.ink
SSLEngine On
SSLProxyEngine On
LogLevel warn
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPreserveHost On
ProxyPass / https://127.0.0.1:444/
ProxyPassReverse / https://127.0.0.1:444/
SSLCertificateFile /etc/letsencrypt/live/torei.stream.raindrop.ink/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/torei.stream.raindrop.ink/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
</IfModule>
And yes, using port 90 and 444 are working from the local network, so it seems either a cert or a proxy issue