comparison auto/options @ 6695:060d71292b69

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.
author Vladimir Homutov <vl@nginx.com>
date Thu, 15 Sep 2016 14:56:51 +0300
parents 9cac11efb205
children 57c8e12c460c
comparison
equal deleted inserted replaced
6694:ea9dfe2f62e7 6695:060d71292b69
124 STREAM_SPLIT_CLIENTS=YES 124 STREAM_SPLIT_CLIENTS=YES
125 STREAM_RETURN=YES 125 STREAM_RETURN=YES
126 STREAM_UPSTREAM_HASH=YES 126 STREAM_UPSTREAM_HASH=YES
127 STREAM_UPSTREAM_LEAST_CONN=YES 127 STREAM_UPSTREAM_LEAST_CONN=YES
128 STREAM_UPSTREAM_ZONE=YES 128 STREAM_UPSTREAM_ZONE=YES
129 STREAM_SSL_PREREAD=NO
129 130
130 DYNAMIC_MODULES= 131 DYNAMIC_MODULES=
131 132
132 NGX_ADDONS= 133 NGX_ADDONS=
133 NGX_ADDON_DEPS= 134 NGX_ADDON_DEPS=
299 --with-stream_ssl_module) STREAM_SSL=YES ;; 300 --with-stream_ssl_module) STREAM_SSL=YES ;;
300 --with-stream_realip_module) STREAM_REALIP=YES ;; 301 --with-stream_realip_module) STREAM_REALIP=YES ;;
301 --with-stream_geoip_module) STREAM_GEOIP=YES ;; 302 --with-stream_geoip_module) STREAM_GEOIP=YES ;;
302 --with-stream_geoip_module=dynamic) 303 --with-stream_geoip_module=dynamic)
303 STREAM_GEOIP=DYNAMIC ;; 304 STREAM_GEOIP=DYNAMIC ;;
305 --with-stream_ssl_preread_module)
306 STREAM_SSL_PREREAD=YES ;;
304 --without-stream_limit_conn_module) 307 --without-stream_limit_conn_module)
305 STREAM_LIMIT_CONN=NO ;; 308 STREAM_LIMIT_CONN=NO ;;
306 --without-stream_access_module) STREAM_ACCESS=NO ;; 309 --without-stream_access_module) STREAM_ACCESS=NO ;;
307 --without-stream_geo_module) STREAM_GEO=NO ;; 310 --without-stream_geo_module) STREAM_GEO=NO ;;
308 --without-stream_map_module) STREAM_MAP=NO ;; 311 --without-stream_map_module) STREAM_MAP=NO ;;
506 --with-stream=dynamic enable dynamic TCP/UDP proxy module 509 --with-stream=dynamic enable dynamic TCP/UDP proxy module
507 --with-stream_ssl_module enable ngx_stream_ssl_module 510 --with-stream_ssl_module enable ngx_stream_ssl_module
508 --with-stream_realip_module enable ngx_stream_realip_module 511 --with-stream_realip_module enable ngx_stream_realip_module
509 --with-stream_geoip_module enable ngx_stream_geoip_module 512 --with-stream_geoip_module enable ngx_stream_geoip_module
510 --with-stream_geoip_module=dynamic enable dynamic ngx_stream_geoip_module 513 --with-stream_geoip_module=dynamic enable dynamic ngx_stream_geoip_module
514 --with-stream_ssl_preread_module enable ngx_stream_ssl_preread_module
511 --without-stream_limit_conn_module disable ngx_stream_limit_conn_module 515 --without-stream_limit_conn_module disable ngx_stream_limit_conn_module
512 --without-stream_access_module disable ngx_stream_access_module 516 --without-stream_access_module disable ngx_stream_access_module
513 --without-stream_geo_module disable ngx_stream_geo_module 517 --without-stream_geo_module disable ngx_stream_geo_module
514 --without-stream_map_module disable ngx_stream_map_module 518 --without-stream_map_module disable ngx_stream_map_module
515 --without-stream_split_clients_module 519 --without-stream_split_clients_module