From 874f8b296bdaf87b031802e959e9627e5616a12d Mon Sep 17 00:00:00 2001 From: wulabing Date: Sat, 10 Jul 2021 14:00:55 +0800 Subject: [PATCH] Xray-0.1.8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [fix] nginx 兼容配置的部分参数删除 --- config/web_compatible.conf | 4 ---- install.sh | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/config/web_compatible.conf b/config/web_compatible.conf index e885868..0596bdb 100644 --- a/config/web_compatible.conf +++ b/config/web_compatible.conf @@ -10,8 +10,6 @@ root /www/xray_web; error_page 400 = /400.html; - # Config for 0-RTT in TLSv1.3 - ssl_early_data on; ssl_stapling on; ssl_stapling_verify on; add_header Strict-Transport-Security "max-age=63072000" always; @@ -26,8 +24,6 @@ proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_set_header Host $http_host; - # Config for 0-RTT in TLSv1.3 - proxy_set_header Early-Data $ssl_early_data; } } server { diff --git a/install.sh b/install.sh index 09c5a6f..85a22bb 100644 --- a/install.sh +++ b/install.sh @@ -27,7 +27,7 @@ OK="${Green}[OK]${Font}" ERROR="${Red}[ERROR]${Font}" # 变量 -shell_version="0.1.7" +shell_version="0.1.8" github_branch="nginx_forward" xray_conf_dir="/usr/local/etc/xray" website_dir="/www/xray_web/"