From fbcb0c8a33c7168aad3b1474d4cd8cde3486e155 Mon Sep 17 00:00:00 2001 From: Maxim Dounin Date: Mon, 25 Feb 2019 16:42:43 +0300 Subject: SSL: dynamic certificate loading in the stream module. --- src/stream/ngx_stream_ssl_module.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/stream/ngx_stream_ssl_module.h') diff --git a/src/stream/ngx_stream_ssl_module.h b/src/stream/ngx_stream_ssl_module.h index 9f8f01cf1..6cb4140a8 100644 --- a/src/stream/ngx_stream_ssl_module.h +++ b/src/stream/ngx_stream_ssl_module.h @@ -34,6 +34,9 @@ typedef struct { ngx_array_t *certificates; ngx_array_t *certificate_keys; + ngx_array_t *certificate_values; + ngx_array_t *certificate_key_values; + ngx_str_t dhparam; ngx_str_t ecdh_curve; ngx_str_t client_certificate; -- cgit