December 2017
Intermediate to advanced
410 pages
11h 5m
English
When OCSP stapling is enabled, the web server itself will query the OCSP server and will cache the response. This response is then stapled in the certificate status request extension.
This can easily be implemented with nginx; here is the associated configuration:
ssl_stapling on; ssl_stapling_verify on; ssl_trusted_certificate /etc/ssl/zealvora_com.ca-bundle;
The configuration file looks similar to the following screenshot:

To verify if the OCSP stapling is working properly, we can use this command:
echo QUIT | openssl s_client ...
Read now
Unlock full access