summaryrefslogtreecommitdiffhomepage
path: root/auto/modules
diff options
context:
space:
mode:
authorVladimir Homutov <vl@nginx.com>2016-09-15 14:56:51 +0300
committerVladimir Homutov <vl@nginx.com>2016-09-15 14:56:51 +0300
commit5a7afb1b0d3f74d0ff96d4d9c519c26deb0fde39 (patch)
tree1f57eafb4be0ae7f81993fa9d8831a96e39e80c6 /auto/modules
parent704446127e310d8b0a4e9d5ddf655d5684846fce (diff)
downloadnginx-5a7afb1b0d3f74d0ff96d4d9c519c26deb0fde39.tar.gz
nginx-5a7afb1b0d3f74d0ff96d4d9c519c26deb0fde39.tar.bz2
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.
Diffstat (limited to 'auto/modules')
-rw-r--r--auto/modules10
1 files changed, 10 insertions, 0 deletions
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