From b9d044d6865b73abe0232875ed0b212d90c5306d Mon Sep 17 00:00:00 2001 From: MkQtS <81752398+MkQtS@users.noreply.github.com> Date: Fri, 15 Aug 2025 21:35:40 +0800 Subject: [PATCH] Update release config.json Signed-off-by: MkQtS <81752398+MkQtS@users.noreply.github.com> --- release/config/config.json | 33 +++++++++++++++++++++++---------- 1 file changed, 23 insertions(+), 10 deletions(-) diff --git a/release/config/config.json b/release/config/config.json index bdc78d40ad..d484ba593c 100644 --- a/release/config/config.json +++ b/release/config/config.json @@ -1,11 +1,19 @@ { "log": { - "level": "info" + "level": "info", + "timestamp": true }, "dns": { "servers": [ { - "address": "tls://8.8.8.8" + "type": "tls", + "tag": "google", + "server": "8.8.8.8" + }, + { + "type": "udp", + "tag": "local", + "server": "223.5.5.5" } ] }, @@ -25,19 +33,24 @@ ], "outbounds": [ { - "type": "direct" - }, - { - "type": "dns", - "tag": "dns-out" + "type": "direct", + "tag": "direct" } ], "route": { "rules": [ { - "port": 53, - "outbound": "dns-out" + "action": "sniff" + }, + { + "protocol": "dns", + "action": "hijack-dns" + }, + { + "ip_is_private": true, + "outbound": "direct" } - ] + ], + "default_domain_resolver": "local" } }