From 975022dfe16cb5954ad35dbac0215c0e24c80473 Mon Sep 17 00:00:00 2001 From: Stark <43443357+stark-eth@users.noreply.github.com> Date: Fri, 10 Feb 2023 12:47:35 +0800 Subject: [PATCH] fix: CI code check --- apps/proxy/models.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/proxy/models.py b/apps/proxy/models.py index 73df094c18..ca7666eac4 100644 --- a/apps/proxy/models.py +++ b/apps/proxy/models.py @@ -77,7 +77,7 @@ class XRayTemplates: } SSR_INBOUND = { - "listen": "0.0.0.0", + "listen": "192.168.0.0", "port": 0, "protocol": "shadowsocksr", "tag": XRayTags.SSRProxyTag, @@ -102,7 +102,7 @@ class XRayTemplates: } VMESS_INBOUND = { - "listen": "0.0.0.0", + "listen": "192.168.0.0", "port": 0, "protocol": "vmess", "tag": XRayTags.VmessProxyTag, @@ -119,7 +119,7 @@ class XRayTemplates: } VLESS_INBOUND = { - "listen": "0.0.0.0", + "listen": "192.168.0.0", "port": 0, "protocol": "vless", "tag": XRayTags.VlessProxyTag,