MINOR: ssl: rename ocsp_update.http_proxy into ocsp-update.httpproxy

Rename to the option to have a more consistent name.
This commit is contained in:
William Lallemand 2024-04-30 22:21:45 +02:00
parent 964f093504
commit 271def959c
2 changed files with 3 additions and 3 deletions

View File

@ -1290,7 +1290,7 @@ The following keywords are supported in the "global" section :
- nbthread
- node
- numa-cpu-mapping
- ocsp_update.http_proxy
- ocsp-update.httpproxy
- pidfile
- pp2-never-send-local
- presetenv
@ -2169,7 +2169,7 @@ numa-cpu-mapping
already specified, for example via the 'cpu-map' directive or the taskset
utility.
ocsp_update.http_proxy <address>[:port]
ocsp-update.httpproxy <address>[:port]
Allow to use an HTTP proxy for the OCSP updates. This only works with HTTP,
HTTPS is not supported. This option will allow the OCSP updater to send
absolute URI in the request to the proxy.

View File

@ -2025,7 +2025,7 @@ static struct cfg_kw_list cfg_kws = {ILH, {
{ CFG_GLOBAL, "tune.ssl.ocsp-update.maxdelay", ssl_parse_global_ocsp_maxdelay },
{ CFG_GLOBAL, "tune.ssl.ocsp-update.mindelay", ssl_parse_global_ocsp_mindelay },
{ CFG_GLOBAL, "tune.ssl.ocsp-update.mode", ssl_parse_global_ocsp_update_mode },
{ CFG_GLOBAL, "ocsp_update.http_proxy", ocsp_update_parse_global_http_proxy },
{ CFG_GLOBAL, "ocsp-update.httpproxy", ocsp_update_parse_global_http_proxy },
#endif
{ 0, NULL, NULL },
}};