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: phd.nebulonenergy.org
I ran this command:
It produced this output:
My web server is (include version): Apache 2.4.58
The operating system my web server runs on is (include version): Ubuntu 24.04
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): 2.9.0
Some users that must go through their web proxy to reach https://phd.nebulonenergy.org/phd receive a SSL error (SEC_ERROR_UNKNOWN_ISSUER). Viewing the certificate on their browser, they do not see the intermediate certificate.
My apache configuration is simple:
<VirtualHost *:443>
ServerName nebulonenergy.org
ServerAlias phd.nebulonenergy.org
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/nebulonenergy.org/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/nebulonenergy.org/privkey.pem
</VirtualHost>
I tried adding the following line
SSLCertificateChainFile /etc/letsencrypt/live/nebulonenergy.org/fullchain.pem
to no effect, and also
SSLCertificateChainFile /etc/letsencrypt/live/nebulonenergy.org/chain.pem
also to no effect.
Can someone point me in the right direction? Thanks.