mirror of https://github.com/mack-a/v2ray-agent
feat(脚本): 安装xray-core会自动替换最新geo相关文件、xray-core添加默认的routing文件、解决gstatic 可能出现的屏蔽问题
parent
04a8e7e2f3
commit
47e3328e2c
35
install.sh
35
install.sh
|
@ -1413,9 +1413,8 @@ randomPathFunction() {
|
||||||
else
|
else
|
||||||
echoContent yellow "请输入自定义路径[例: alone],不需要斜杠,[回车]随机路径"
|
echoContent yellow "请输入自定义路径[例: alone],不需要斜杠,[回车]随机路径"
|
||||||
read -r -p '路径:' customPath
|
read -r -p '路径:' customPath
|
||||||
|
|
||||||
if [[ -z "${customPath}" ]]; then
|
if [[ -z "${customPath}" ]]; then
|
||||||
customPath=$(initRandomPath)
|
initRandomPath
|
||||||
currentPath=${customPath}
|
currentPath=${customPath}
|
||||||
else
|
else
|
||||||
if [[ "${customPath: -2}" == "ws" ]]; then
|
if [[ "${customPath: -2}" == "ws" ]]; then
|
||||||
|
@ -1686,6 +1685,14 @@ installXray() {
|
||||||
|
|
||||||
unzip -o "/etc/v2ray-agent/xray/${xrayCoreCPUVendor}.zip" -d /etc/v2ray-agent/xray >/dev/null
|
unzip -o "/etc/v2ray-agent/xray/${xrayCoreCPUVendor}.zip" -d /etc/v2ray-agent/xray >/dev/null
|
||||||
rm -rf "/etc/v2ray-agent/xray/${xrayCoreCPUVendor}.zip"
|
rm -rf "/etc/v2ray-agent/xray/${xrayCoreCPUVendor}.zip"
|
||||||
|
|
||||||
|
version=$(curl -s https://api.github.com/repos/Loyalsoldier/v2ray-rules-dat/releases | jq -r '.[]|.tag_name' | head -1)
|
||||||
|
echoContent skyBlue "------------------------Version-------------------------------"
|
||||||
|
echo "version:${version}"
|
||||||
|
rm /etc/v2ray-agent/xray/geo* >/dev/null 2>&1
|
||||||
|
wget -c -q --show-progress -P /etc/v2ray-agent/xray/ "https://github.com/Loyalsoldier/v2ray-rules-dat/releases/download/${version}/geosite.dat"
|
||||||
|
wget -c -q --show-progress -P /etc/v2ray-agent/xray/ "https://github.com/Loyalsoldier/v2ray-rules-dat/releases/download/${version}/geoip.dat"
|
||||||
|
|
||||||
chmod 655 /etc/v2ray-agent/xray/xray
|
chmod 655 /etc/v2ray-agent/xray/xray
|
||||||
else
|
else
|
||||||
echoContent green " ---> Xray-core版本:$(/etc/v2ray-agent/xray/xray --version | awk '{print $2}' | head -1)"
|
echoContent green " ---> Xray-core版本:$(/etc/v2ray-agent/xray/xray --version | awk '{print $2}' | head -1)"
|
||||||
|
@ -2845,6 +2852,11 @@ EOF
|
||||||
},
|
},
|
||||||
"tag":"IPv6-out"
|
"tag":"IPv6-out"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"protocol":"freedom",
|
||||||
|
"settings": {},
|
||||||
|
"tag":"direct"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"protocol":"blackhole",
|
"protocol":"blackhole",
|
||||||
"tag":"blackhole-out"
|
"tag":"blackhole-out"
|
||||||
|
@ -2864,7 +2876,22 @@ EOF
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
# routing
|
||||||
|
cat <<EOF >/etc/v2ray-agent/xray/conf/09_routing.json
|
||||||
|
{
|
||||||
|
"routing": {
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"type": "field",
|
||||||
|
"domain": [
|
||||||
|
"domain:gstatic.com"
|
||||||
|
],
|
||||||
|
"outboundTag": "direct"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
EOF
|
||||||
# VLESS_TCP_TLS/XTLS
|
# VLESS_TCP_TLS/XTLS
|
||||||
# 回落nginx
|
# 回落nginx
|
||||||
local fallbacksList='{"dest":31300,"xver":0},{"alpn":"h2","dest":31302,"xver":0}'
|
local fallbacksList='{"dest":31300,"xver":0},{"alpn":"h2","dest":31302,"xver":0}'
|
||||||
|
@ -5553,7 +5580,7 @@ menu() {
|
||||||
cd "$HOME" || exit
|
cd "$HOME" || exit
|
||||||
echoContent red "\n=============================================================="
|
echoContent red "\n=============================================================="
|
||||||
echoContent green "作者:mack-a"
|
echoContent green "作者:mack-a"
|
||||||
echoContent green "当前版本:v2.7.7"
|
echoContent green "当前版本:v2.7.8"
|
||||||
echoContent green "Github:https://github.com/mack-a/v2ray-agent"
|
echoContent green "Github:https://github.com/mack-a/v2ray-agent"
|
||||||
echoContent green "描述:八合一共存脚本\c"
|
echoContent green "描述:八合一共存脚本\c"
|
||||||
showInstallStatus
|
showInstallStatus
|
||||||
|
|
Loading…
Reference in New Issue