From ab353d2268da007ef3709695c4377b1a86399bcf Mon Sep 17 00:00:00 2001 From: dami Date: Sat, 20 Jun 2026 19:36:23 +0800 Subject: [PATCH] Update mw.py --- web/core/mw.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/web/core/mw.py b/web/core/mw.py index 4df344b6c..4ecfbfff2 100644 --- a/web/core/mw.py +++ b/web/core/mw.py @@ -925,12 +925,17 @@ def isSupportSystemctl(): def isSupportHttp3(version): if version.startswith('1.29'): return True + if version.startswith('1.31'): + return True return False def isVhostHasReuseport(version): if not version.startswith('1.29'): return False + if not version.startswith('1.31'): + return False + vhost_dir = getServerDir() + '/web_conf/nginx/vhost' if not os.path.exists(vhost_dir): return False