Improve the performance and privacy of your SSL connections.
OCSP (Online Certificate Status Protocol) allows browsers to check if an SSL certificate has been revoked. OCSP Stapling is an improvement that allows your server to provide this verification directly, improving both performance and privacy.
Without stapling, the browser must contact the certificate authority for each connection, adding latency and revealing your browsing habits to the CA. With stapling, the server includes the OCSP response in the SSL handshake.
MoniTao monitors your certificates and can detect SSL configuration issues, including OCSP-related problems.
Understanding how OCSP Stapling works:
Why enable OCSP Stapling:
How to enable OCSP Stapling on your server:
Examples for Nginx and Apache:
# Nginx - OCSP Stapling
ssl_stapling on;
ssl_stapling_verify on;
ssl_trusted_certificate /path/to/fullchain.pem;
resolver 8.8.8.8 8.8.4.4 valid=300s;
resolver_timeout 5s;
# Apache - OCSP Stapling
SSLUseStapling On
SSLStaplingCache "shmcb:logs/ssl_stapling(32768)"
SSLStaplingResponderTimeout 5
SSLStaplingReturnResponderErrors Off
# Test OCSP Stapling
openssl s_client -connect yoursite.com:443 -status 2>/dev/null | grep -A 17 "OCSP response"
After enabling, verify with the openssl command that the OCSP response is included in the handshake.
Tips for OCSP Stapling:
No, but it's a good practice for performance and privacy. Most modern SSL configurations include it.
The server uses its cached OCSP response as long as it's valid. If the cache expires, stapling becomes temporarily unavailable.
Yes, Let's Encrypt provides OCSP responses and stapling works normally with their certificates.
Impact is negligible. The server makes one OCSP request every few hours, not with each client connection.
Use SSL Labs (ssllabs.com/ssltest) or the command openssl s_client -connect site.com:443 -status.
MoniTao monitors your SSL certificate validity. To specifically check OCSP Stapling, use SSL Labs.
OCSP Stapling is a simple optimization that improves both performance and privacy of your SSL connections. Enabling it takes just a few minutes.
Combine OCSP Stapling with MoniTao for optimal SSL configuration: maximum performance and proactive certificate monitoring.
Start free, no credit card required.