From df174d89ef4e46687158be5c3f0678ac988955f6 Mon Sep 17 00:00:00 2001 From: Samuel Huang Date: Thu, 19 Sep 2024 21:21:12 +1000 Subject: [PATCH] README.md --- README.md | 10 +++++----- run.sh | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 28f088f..04b8137 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # proxy-xray -[Xray](https://github.com/XTLS/Xray-core) is a low detectable VPN. proxy-xray is a Xray client container that runs Xray with config file generated from command line options directly hence remove the necessity of Xray config modification. +[Xray-Core](https://github.com/XTLS/Xray-core) is a low detectable VPN. proxy-xray is a Xray client container that runs Xray with config file generated from command line options directly hence remove the necessity of Xray config modification. -Please have a look over the sibling project [server-xray](https://github.com/samuelhbne/server-xray) if you'd like to set a Xray server ready first. +Please have a look over the sibling project [server-xray](https://github.com/samuelhbne/server-xray) if you'd like to setup a Xray-Core server first. ![docker-build](https://github.com/samuelhbne/proxy-xray/workflows/docker-buildx-latest/badge.svg) ![docker-build](https://github.com/samuelhbne/proxy-xray/workflows/docker-buildx-dev/badge.svg) @@ -38,7 +38,7 @@ $ curl -sSx socks5h://127.0.0.1:1080 https://checkip.amazonaws.com $ curl -sSx http://127.0.0.1:8123 https://checkip.amazonaws.com 12.34.56.78 -$ dig +short @127.0.0.1 -p 65353 twitter.com +$ dig +short @127.0.0.1 -p 53 twitter.com 104.244.42.193 104.244.42.129 @@ -94,7 +94,7 @@ proxy-xray -j|--json Json snippet to merge into the config. Say '{log:{loglevel:info}' --dns Designated upstream DNS server IP, 1.1.1.1 will be applied by default --dns-local-cn Enable China-accessible domains to be resolved in China - --domain-direct Add a domain rule for direct routing, likegeosite:geosite:geolocation-cn + --domain-direct Add a domain rule for direct routing, like geosite:geosite:geolocation-cn --domain-proxy Add a domain rule for proxy routing, like twitter.com or geosite:google-cn --domain-block Add a domain rule for block routing, like geosite:category-ads-all --ip-direct Add a ip-addr rule for direct routing, like 114.114.114.114/32 or geoip:cn @@ -193,7 +193,7 @@ docker buildx build --platform=linux/amd64 --output type=docker -t samuelhbne/pr ## Credits -Thanks to [RPRX](https://github.com/RPRX) for the [Xray](https://github.com/XTLS/Xray-core) project. +Thanks to [RPRX](https://github.com/RPRX) for the [Xray-core](https://github.com/XTLS/Xray-core) project. Thanks to [Loyalsoldier](https://github.com/Loyalsoldier) for the [v2ray-rules-dat](https://github.com/Loyalsoldier/v2ray-rules-dat) project. diff --git a/run.sh b/run.sh index 5b56f8b..aeaa68a 100755 --- a/run.sh +++ b/run.sh @@ -29,7 +29,7 @@ usage() { echo " --dns Designated upstream DNS server IP, 1.1.1.1 will be applied by default" # echo " --dns-local Enable designated domain conf file. Like apple.china.conf" echo " --dns-local-cn Enable China-accessible domains to be resolved in China" - echo " --domain-direct Add a domain rule for direct routing, likegeosite:geosite:geolocation-cn" + echo " --domain-direct Add a domain rule for direct routing, like geosite:geosite:geolocation-cn" echo " --domain-proxy Add a domain rule for proxy routing, like twitter.com or geosite:google-cn" echo " --domain-block Add a domain rule for block routing, like geosite:category-ads-all" echo " --ip-direct Add a ip-addr rule for direct routing, like 114.114.114.114/32 or geoip:cn"