Hi!
I've been using Chrome with my site, which works just fine. I manually create SSL certificates with Let's Encrypt. I have the OCSP must staple set. In Chrome, I can load my site just fine. In Firefox, I cannot. I receive the following error:
This is related to OCSP stapling. If I temporarily set security.ssl.enable_ocsp_must_staple in about:config in Firefox to false, I can visit my page.
So I'm looking through the Apache configuration and see:
I'm using EasyApache 4 and I ran /usr/sbin/apachectl -M and verified that socache_shmcb_module is listed, and it is, as shared.
I've verified the server and certificates are good by running:
That WARNING worries me a bit and might be part of the problem. I haven't researched that yet.
Any ideas what might be going on here and how to go about fixing it on the server?
Thanks!
I've been using Chrome with my site, which works just fine. I manually create SSL certificates with Let's Encrypt. I have the OCSP must staple set. In Chrome, I can load my site just fine. In Firefox, I cannot. I receive the following error:
Code:
An error occurred during a connection to www.example.com:2087. A required
TLS feature is missing.
Error code: MOZILLA_PKIX_ERROR_REQUIRED_TLS_FEATURE_MISSING
So I'm looking through the Apache configuration and see:
Code:
<IfModule socache_shmcb_module>
SSLUseStapling on
SSLStaplingCache shmcb:/run/apache2/stapling_cache_shmcb(256000)
# Prevent browsers from failing if an OCSP server is temporarily broken.
SSLStaplingReturnResponderErrors off
SSLStaplingErrorCacheTimeout 60
SSLStaplingFakeTryLater off
SSLStaplingResponderTimeout 3
SSLSessionCache shmcb:/run/apache2/ssl_gcache_data_shmcb(1024000)
</IfModule>
I've verified the server and certificates are good by running:
Code:
openssl ocsp -issuer chain.pem -cert cert.pem -text -verify_other \
chain.pem -url http://ocsp.int-x3.letsencrypt.org/ -header "Host" \
"ocsp.int-x3.letsencrypt.org"
....
OCSP Response Data:
OCSP Response Status: successful (0x0)
Response Type: Basic OCSP Response
Version: 1 (0x0)
Responder Id: C = US, O = Let's Encrypt, CN = Let's Encrypt Authority X3
Produced At: Aug 19 00:03:00 2017 GMT
...
WARNING: no nonce in response
Response verify OK
cert.pem: good
This Update: Aug 19 00:00:00 2017 GMT
Next Update: Aug 26 00:00:00 2017 GMT
Any ideas what might be going on here and how to go about fixing it on the server?
Thanks!
Last edited: