diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 5c73662..924fc7f 100755 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -46,6 +46,7 @@ jobs: - name: Build and push uses: docker/build-push-action@v5 with: + platforms: linux/amd64,linux/arm64 build-args: | "version=${{ github.ref_name }}" push: true diff --git a/README.md b/README.md index 9da7e20..3adc0df 100755 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ sub2sing-box convert -c ./sub2sing-box.json ### 默认模板 -默认模板位于 `templates` 目录,使用 `tun` 配置,可以根据需求自行修改模板内容。 +默认模板位于 `templates` 目录,使用 `tun` 配置,该配置仅供参考,请根据实际情况修改。 ### 占位符 diff --git a/templates/linux/experimental.json b/templates/linux/experimental.json index 3a610ad..7ac40ed 100755 --- a/templates/linux/experimental.json +++ b/templates/linux/experimental.json @@ -6,6 +6,7 @@ "clash_api": { "external_controller": "127.0.0.1:9090", "external_ui": "./ui", + "external_ui_download_url": "https://github.com/Zephyruso/zashboard/releases/latest/download/dist.zip", "external_ui_download_detour": "default", "default_mode": "Enhanced" } diff --git a/templates/linux/inbounds.json b/templates/linux/inbounds.json index f47a6f8..8e0b6d4 100755 --- a/templates/linux/inbounds.json +++ b/templates/linux/inbounds.json @@ -2,12 +2,12 @@ "inbounds": [ { "type": "tun", + "tag": "tun-in", "auto_route": true, "auto_redirect": true, "strict_route": true, - "sniff": true, - "address": ["172.16.0.1/30", "fdfe:dcba:9876::1/126"], - "exclude_interface": ["tailscale0"] + "address": ["192.168.135.1/30", "fdfe:dcba:9876::1/126"], + "route_exclude_address": ["100.64.0.0/10"] } ] } diff --git a/templates/linux/outbounds.json b/templates/linux/outbounds.json index 9cbeaae..95e10b0 100755 --- a/templates/linux/outbounds.json +++ b/templates/linux/outbounds.json @@ -8,14 +8,6 @@ { "tag": "direct", "type": "direct" - }, - { - "tag": "block", - "type": "block" - }, - { - "tag": "dns", - "type": "dns" } ] } diff --git a/templates/linux/route.json b/templates/linux/route.json index 1824fab..9cb0c98 100755 --- a/templates/linux/route.json +++ b/templates/linux/route.json @@ -2,17 +2,20 @@ "route": { "rules": [ { - "type": "logical", - "mode": "or", - "rules": [ - { - "protocol": "dns" - }, - { - "port": 53 - } - ], - "outbound": "dns" + "action": "resolve", + "strategy": "prefer_ipv4" + }, + { + "action": "sniff", + "timeout": "1s" + }, + { + "protocol": "dns", + "action": "hijack-dns" + }, + { + "port": [3478, 5348, 5349], + "outbound": "direct" }, { "ip_is_private": true, @@ -31,18 +34,27 @@ "outbound": "default" }, { - "type": "logical", - "mode": "or", - "rules": [ - { - "rule_set": [ - "geoip-cn", - "geosite-geolocation-cn", - "geosite-cn", - "geosite-category-games@cn", - "geosite-steam@cn" - ] - } + "rule_set": "geosite-bahamut", + "outbound": "台湾(TW)" + }, + { + "domain_suffix": "online-fix.me", + "outbound": "香港(HK)" + }, + { + "process_path_regex": [ + "^.+/steam/compatibilitytools.d/.+", + "^.+/steamapps/common/.*" + ], + "outbound": "direct" + }, + { + "rule_set": [ + "geoip-cn", + "geosite-geolocation-cn", + "geosite-cn", + "geosite-category-games@cn", + "geosite-steam@cn" ], "outbound": "direct" }