Update email and domain references to hey.run
Replaced all instances of 'idleleo.com' with 'hey.run' in configuration files and scripts to reflect updated contact and domain information. Also updated the auto_update.sh script to use a new version and API endpoint.
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
"id": "UUID",
|
||||
"flow": "xtls-rprx-vision",
|
||||
"level": 0,
|
||||
"email": "me@idleleo.com"
|
||||
"email": "me@hey.run"
|
||||
}
|
||||
],
|
||||
"decryption": "none"
|
||||
@@ -42,7 +42,7 @@
|
||||
{
|
||||
"id": "UUID",
|
||||
"level": 0,
|
||||
"email": "ws@idleleo.com"
|
||||
"email": "ws@hey.run"
|
||||
}
|
||||
],
|
||||
"decryption": "none"
|
||||
@@ -65,7 +65,7 @@
|
||||
{
|
||||
"id": "UUID",
|
||||
"level": 0,
|
||||
"email": "me@idleleo.com"
|
||||
"email": "me@hey.run"
|
||||
}
|
||||
],
|
||||
"decryption": "none"
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
{
|
||||
"id": "UUID",
|
||||
"level": 0,
|
||||
"email": "me@idleleo.com"
|
||||
"email": "me@hey.run"
|
||||
}
|
||||
],
|
||||
"decryption": "none"
|
||||
@@ -38,7 +38,7 @@
|
||||
{
|
||||
"id": "UUID",
|
||||
"level": 0,
|
||||
"email": "me@idleleo.com"
|
||||
"email": "me@hey.run"
|
||||
}
|
||||
],
|
||||
"decryption": "none"
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
"id": "UUID",
|
||||
"flow": "xtls-rprx-vision",
|
||||
"level": 0,
|
||||
"email": "me@idleleo.com"
|
||||
"email": "me@hey.run"
|
||||
}
|
||||
],
|
||||
"decryption": "none",
|
||||
@@ -51,7 +51,7 @@
|
||||
{
|
||||
"id": "UUID",
|
||||
"level": 0,
|
||||
"email": "ws@idleleo.com"
|
||||
"email": "ws@hey.run"
|
||||
}
|
||||
],
|
||||
"decryption": "none"
|
||||
@@ -74,7 +74,7 @@
|
||||
{
|
||||
"id": "UUID",
|
||||
"level": 0,
|
||||
"email": "me@idleleo.com"
|
||||
"email": "me@hey.run"
|
||||
}
|
||||
],
|
||||
"decryption": "none"
|
||||
|
||||
+2
-2
@@ -2,7 +2,7 @@
|
||||
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
|
||||
export PATH
|
||||
|
||||
VERSION="1.0.0"
|
||||
VERSION="1.0.1"
|
||||
|
||||
idleleo_dir="/etc/idleleo"
|
||||
local_bin="/usr/local"
|
||||
@@ -13,7 +13,7 @@ log_dir="${idleleo_dir}/logs"
|
||||
log_file="${log_dir}/auto_update.log"
|
||||
running_file="${log_dir}/auto_update.running"
|
||||
xray_qr_config_file="${idleleo_dir}/info/vless_qr.json"
|
||||
get_versions_all=$(curl -s https://www.idleleo.com/api/xray_shell_versions)
|
||||
get_versions_all=$(curl -s https://cdn.jsdelivr.net/gh/hello-yunshu/Xray_bash_onekey_api@main/xray_shell_versions.json)
|
||||
info_extraction_all=$(jq -rc . ${xray_qr_config_file})
|
||||
|
||||
[[ ! -d "${log_dir}" ]] && mkdir -p ${log_dir}
|
||||
|
||||
+6
-7
@@ -14,7 +14,6 @@ cd "$(
|
||||
# Author: hello-yunshu
|
||||
# Dscription: Xray Onekey Management
|
||||
# Version: 2.0
|
||||
# email: admin@idleleo.com
|
||||
# Official document: hey.run
|
||||
#=====================================================
|
||||
|
||||
@@ -35,7 +34,7 @@ OK="${Green}[OK]${Font}"
|
||||
Error="${RedW}[$(gettext "错误")]${Font}"
|
||||
Warning="${RedW}[$(gettext "警告")]${Font}"
|
||||
|
||||
shell_version="2.7.2"
|
||||
shell_version="2.7.3"
|
||||
shell_mode="$(gettext "未安装")"
|
||||
tls_mode="None"
|
||||
ws_grpc_mode="None"
|
||||
@@ -701,10 +700,10 @@ email_set() {
|
||||
read -r custom_email_fq
|
||||
case $custom_email_fq in
|
||||
[yY][eE][sS] | [yY])
|
||||
read_optimize "$(gettext "请输入正确的 email") (e.g. me@idleleo.com): " "custom_email" "NULL"
|
||||
read_optimize "$(gettext "请输入正确的 email") (e.g. me@hey.run): " "custom_email" "NULL"
|
||||
;;
|
||||
*)
|
||||
custom_email="$(head -n 10 /dev/urandom | md5sum | head -c ${random_num})@idleleo.com"
|
||||
custom_email="$(head -n 10 /dev/urandom | md5sum | head -c ${random_num})@hey.run"
|
||||
;;
|
||||
esac
|
||||
log_echo "${Green} Xray $(gettext "用户名") (email): ${custom_email} ${Font}"
|
||||
@@ -1588,7 +1587,7 @@ domain_check() {
|
||||
fi
|
||||
echo
|
||||
log_echo "${GreenBG} $(gettext "确定域名信息") ${Font}"
|
||||
read_optimize "$(gettext "请输入你的域名信息") (e.g. www.idleleo.com):" "domain" "NULL"
|
||||
read_optimize "$(gettext "请输入你的域名信息") (e.g. www.hey.run):" "domain" "NULL"
|
||||
echo -e "\n${GreenBG} $(gettext "请选择公网IP(IPv4/IPv6)或手动输入域名") ${Font}"
|
||||
echo -e "${Red}1${Font}: IPv4 ($(gettext "默认"))"
|
||||
echo "2: IPv6"
|
||||
@@ -1955,7 +1954,7 @@ server {
|
||||
}
|
||||
|
||||
location / {
|
||||
return 301 https://www.idleleo.com\$request_uri;
|
||||
return 301 https://www.hey.run\$request_uri;
|
||||
}
|
||||
}
|
||||
EOF
|
||||
@@ -1984,7 +1983,7 @@ server {
|
||||
server_name serveraddr.com;
|
||||
index index.html index.htm;
|
||||
root /403.html;
|
||||
error_page 403 https://www.idleleo.com/helloworld;
|
||||
error_page 403 https://hey.run/helloworld;
|
||||
ssl_session_cache shared:SSL:10m;
|
||||
ssl_session_timeout 1d;
|
||||
ssl_session_tickets off;
|
||||
|
||||
Reference in New Issue
Block a user