From 5a7afb1b0d3f74d0ff96d4d9c519c26deb0fde39 Mon Sep 17 00:00:00 2001 From: Vladimir Homutov Date: Thu, 15 Sep 2016 14:56:51 +0300 Subject: Stream: ssl_preread module. The ssl_preread module extracts information from the SSL Client Hello message without terminating SSL. Currently, only $ssl_preread_server_name variable is supported, which contains server name from the SNI extension. --- auto/modules | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'auto/modules') diff --git a/auto/modules b/auto/modules index 603c3a0b3..1d8dc5332 100644 --- a/auto/modules +++ b/auto/modules @@ -1120,6 +1120,16 @@ if [ $STREAM != NO ]; then . auto/module fi + + if [ $STREAM_SSL_PREREAD = YES ]; then + ngx_module_name=ngx_stream_ssl_preread_module + ngx_module_deps= + ngx_module_srcs=src/stream/ngx_stream_ssl_preread_module.c + ngx_module_libs= + ngx_module_link=$STREAM_SSL_PREREAD + + . auto/module + fi fi -- cgit