1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-20 02:52:11 +00:00

OCSP Stapling Support for NGINX

Added support for OCSP Stapling.  Will not cause a problem is the cert does not have --must-staple.
This commit is contained in:
Jeff Zellen 2020-07-16 22:43:01 -04:00 committed by GitHub
parent 967409b157
commit f6e208f64f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,6 +42,8 @@ server {
ssl_certificate $SSL_CERTIFICATE;
ssl_certificate_key $SSL_KEY;
ssl_stapling on;
ssl_stapling_verify on;
# ADDITIONAL DIRECTIVES HERE
}