Skip to main content
Version: 3.14.x.x LTS

Enable OCSP stapling

The sample code in the code block below illustrates how to enable a basic OCSP stapling facility within nevisProxy:

<filter>
<filter-name>OCSP</filter-name>
<filter-
class>ch::nevis::navajo::apglue::httpd_${HTTPD_LIB_VERSION}_x::servlet::ApacheConfigFilter</filter-class>
<filter-lib>libApache${HTTPD_LIB_VERSION}_Servlet.so.1</filter-lib>
<init-param>
<param-name>ServerConfig</param-name>
<param-value>SSLStaplingCache shmcb:/tmp/stapling_cache(128000)
SSLUseStapling on</param-value>
</init-param>
</filter>

Be aware that this a minimal working example, with global settings for all virtual hosts.

This feature is supported byApache 2.4 and higher.