nginx-proxy-manager/backend/templates/_ocsp.conf
BatSmacker84 25f1fba96f
added webgui switch for OCSP Stapling
dead, proxy, and redirect hosts have the option to enable OCSP Stapling in the webgui
2023-08-22 20:08:21 -05:00

7 lines
185 B
Text

{% if certificate and certificate_id > 0 -%}
{% if ocsp_stapling == 1 or ocsp_stapling == true %}
# OCSP Stapling
ssl_stapling on;
ssl_stapling_verify on;
{% endif %}
{% endif %}