如何在Windows上configurationApache 2.4上的OCSP Stapling?

我正在使用Apache 2.4.18和OpenSSL 1.0.1e。 根据https://mozilla.github.io/server-side-tls/ssl-config-generator/

进入拥塞的configuration,我收到了,但我不知道如何configuration它在Windows上,因为我不确定param SSLStaplingCache,它是一个目录?

# OCSP Stapling, only in httpd 2.3.3 and later SSLUseStapling on SSLStaplingResponderTimeout 5 SSLStaplingReturnResponderErrors off SSLStaplingCache shmcb:/var/run/ocsp(128000) 

谢谢

 <VirtualHost *:443> # your server config stuff # OCSP stapling 1 of 2 (inside your vHost) SSLUseStapling on </VirtualHost> # OCSP stapling 2 of 2 (outside your vHost) SSLStaplingCache shmcb:C:/Windows/Temp/OCSPstapling_cache(128000)