What it is
Every internal CA you create automatically publishes CRLs and answers OCSP queries. Every certificate issued by an internal CA embeds the CRL distribution point and OCSP responder URLs in the certificate itself, so relying parties know where to check.When to use it
- Enable OCSP stapling on your TLS servers so clients don’t need to phone home during handshakes.
- Tune the CRL refresh interval for a high-value CA to minimize the window between a revocation and client awareness.
- Generate a CRL on demand immediately after a key compromise incident.
- Add OCSP Must-Staple to certificates issued to services you can guarantee will always staple.
CRL
Batch, signed list downloaded periodically. Cacheable, works offline. Latency =
nextUpdate interval (default 7 days).OCSP
Real-time per-serial lookup. Low staleness, requires a reachable responder. Ideal for high-value certificates.
Set it up
Generate a CRL on demand
Go to PKI Management, open a CA, and click Generate CRL. The CRL is immediately available at the distribution point URL embedded in your certificates.
Configure CRL refresh interval
Open the CA settings and set the CRL refresh interval (default 7 days). For high-value CAs, set this to 1–24 hours. TigerTrust regenerates the CRL automatically on this schedule.
Enable OCSP stapling on your servers
Point your web server’s OCSP responder configuration at the URL shown in PKI Management > CA > OCSP endpoint. Example configurations for common servers are shown below.
CRL distribution points
Every certificate issued by an internal CA embeds acrlDistributionPoints extension. The default URL pattern is:
OCSP stapling configuration
- nginx
- Apache
- HAProxy
Performance
CRL fetches
Serve CRLs behind a CDN — they are immutable within their
nextUpdate window. Set Cache-Control: public, max-age=<seconds-until-next-update>.OCSP responses
Typical response time is under 10 ms. Deploy the responder close to your servers if stapling is not feasible.
Related
Certificate revocation
How certificates enter the revocation store that CRL/OCSP publish from.
PKI Core
The service that signs CRLs and answers OCSP queries.
Certificate authorities
Per-CA distribution point and OCSP endpoint configuration.