wiki:enable_ocsp_stapling
This is an old revision of the document!
Table of Contents
Enable OCSP stapling
nginx
# OCSP stapling ssl_stapling on; ssl_stapling_verify on; ssl_trusted_certificate /etc/nginx/certs/ca_stapling.pem;
ca_stapling.pem should contain (from top to bottom) intermediate cert> root cert. Otherwise you might get an error like:
2021/10/26 15:46:04 [error] 22172#22172: OCSP_basic_verify() failed (SSL: error:27069065:OCSP routines:OCSP_basic_verify:certificate verify error:Verify error:self signed certificate in certificate chain) while requesting certificate status, responder: ocsp.starfieldtech.com, peer: 192.xx.xx.xx:80, certificate: "/etc/nginx/certs/yourfullcert.crt"
This shouldn't however be an issue with Letsencrypt certificates as in there you shouldn't need the ssl_trusted_certificate
directive.
Tested on
- Debian 10
- nginx/1.21.3
See also
References
wiki/enable_ocsp_stapling.1635345592.txt.gz · Last modified: 2021/10/27 14:39 by antisa