mirror of
https://github.com/nginx/nginx.git
synced 2024-11-21 16:28:40 +00:00
a168b810e2
The module allows to pass connections from Stream to other modules such as HTTP or Mail, as well as back to Stream. Previously, this was only possible with proxying. Connections with preread buffer read out from socket cannot be passed. The module allows selective SSL termination based on SNI. stream { server { listen 8000 default_server; ssl_preread on; ... } server { listen 8000; server_name foo.example.com; pass 127.0.0.1:8001; # to HTTP } server { listen 8000; server_name bar.example.com; ... } } http { server { listen 8001 ssl; ... location / { root html; } } } |
||
---|---|---|
.. | ||
cc | ||
lib | ||
os | ||
types | ||
configure | ||
define | ||
endianness | ||
feature | ||
have | ||
have_headers | ||
headers | ||
include | ||
init | ||
install | ||
make | ||
module | ||
modules | ||
nohave | ||
options | ||
sources | ||
stubs | ||
summary | ||
threads | ||
unix |