From 71b1700938171c0d9f28c90d54f515ded0f16ea3 Mon Sep 17 00:00:00 2001 From: lxhao61 Date: Tue, 27 Sep 2022 03:51:18 +0800 Subject: [PATCH] Update 1_SNI_nginx.conf --- nginx(other configuration)/1_SNI_nginx.conf | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/nginx(other configuration)/1_SNI_nginx.conf b/nginx(other configuration)/1_SNI_nginx.conf index a06bba93e22..8819e4d8d1d 100644 --- a/nginx(other configuration)/1_SNI_nginx.conf +++ b/nginx(other configuration)/1_SNI_nginx.conf @@ -10,8 +10,7 @@ events { worker_connections 1024; } -stream { -#以下为SNI分流配置:(示例仅配置了两个域名的SNI分流;如需要多个域名,增加对应参数即可。) +stream { #以下为SNI分流配置:(示例仅配置了两个域名的SNI分流;如需要多个域名,增加对应参数即可。) map $ssl_preread_server_name $backend_name { zv.xx.yy vless; #zv.xx.yy修改为自己的分流域名 zh.xx.yy http2; #zh.xx.yy修改为自己的分流域名 @@ -28,8 +27,8 @@ stream { ssl_preread on; proxy_pass $backend_name; proxy_protocol on; #开启PROXY protocol发送(可选)。此参数是针对此监听端口开启(全局模式,即所有转发端口或进程开启。),故若有一个接收端不支持PROXY protocol就不能启用! - } #SNI分流配置到此结束 -} + } +} #SNI分流配置到此结束 #在如下http中添加对应网站的应用配置参数(可配置多个网站,必须与上对应。) http {