Changeset e932ba5 in mod_gnutls
- Timestamp:
- Apr 4, 2020, 11:55:25 AM (3 years ago)
- Branches:
- asyncio, main, master, proxy-ticket
- Children:
- 87d7f89
- Parents:
- ca0690b
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/mod_gnutls_manual.md
rca0690b re932ba5 644 644 GnuTLSOCSPCheckNonce [On|Off] 645 645 646 Default: *on*\ 647 Context: server config, virtual host 648 649 Some CAs refuse to send nonces in their OCSP responses, probably 650 because that way they can cache responses. If your CA is one of them 651 you can use this flag to disable nonce verification. Note that 652 `mod_gnutls` will _send_ a nonce either way. 646 Default: *off*\ 647 Context: server config, virtual host 648 649 Most CAs do not to send nonces in their OCSP responses, probably 650 because that way they can cache responses, which is [explicitly 651 allowed by RFC 652 6960](https://tools.ietf.org/html/rfc6960#section-2.5). You can enable 653 `GnuTLSOCSPCheckNonce` to enforce nonce validation if your CA is one 654 that supports OCSP nonces. Note that `mod_gnutls` will _send_ a nonce 655 either way. 653 656 654 657 ### GnuTLSOCSPResponseFile -
src/gnutls_ocsp.c
rca0690b re932ba5 1270 1270 sc->ocsp_auto_refresh = GNUTLS_ENABLED_TRUE; 1271 1271 if (sc->ocsp_check_nonce == GNUTLS_ENABLED_UNSET) 1272 sc->ocsp_check_nonce = GNUTLS_ENABLED_ TRUE;1272 sc->ocsp_check_nonce = GNUTLS_ENABLED_FALSE; 1273 1273 if (sc->ocsp_cache_time == MGS_TIMEOUT_UNSET) 1274 1274 sc->ocsp_cache_time = apr_time_from_sec(MGS_OCSP_CACHE_TIMEOUT);
Note: See TracChangeset
for help on using the changeset viewer.