From 8a03d1c7045bc01a1c8dda44d13cc1b8052dd96d Mon Sep 17 00:00:00 2001 From: dami Date: Fri, 3 Apr 2026 02:36:55 +0800 Subject: [PATCH] Update site.py --- web/utils/site.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/utils/site.py b/web/utils/site.py index c39cf3dd1..702a9bc6e 100644 --- a/web/utils/site.py +++ b/web/utils/site.py @@ -554,12 +554,12 @@ class sites(object): tmp = re.findall(rep, conf) if not mw.inArray(tmp, '443'): listen = re.search(rep, conf).group() - http_ssl = http_ssl + "\n\tlisten 443 ssl;" + http_ssl = "listen 443 ssl;" http_ssl = http_ssl + "\n\tlisten [::]:443 ssl;" if mw.isSupportHttp3(version): http_ssl = http_ssl + "\n\tlisten 443 quic reuseport;" http_ssl = http_ssl + "\n\thttp3 on;" - + http_ssl = http_ssl + "\n\thttp2 on;" conf = conf.replace(listen, listen + http_ssl)