mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-04-20 05:52:24 +00:00
Update x-ui.sh (#1437)
This commit is contained in:
parent
b8b2acf853
commit
10cd5159d1
1 changed files with 65 additions and 43 deletions
108
x-ui.sh
108
x-ui.sh
|
@ -130,6 +130,24 @@ update() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
custom_version() {
|
||||||
|
echo "Enter the panel version (like 2.0.0):"
|
||||||
|
read panel_version
|
||||||
|
|
||||||
|
if [ -z "$panel_version" ]; then
|
||||||
|
echo "Panel version cannot be empty. Exiting."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
download_link="https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.sh"
|
||||||
|
|
||||||
|
# Use the entered panel version in the download link
|
||||||
|
install_command="bash <(curl -Ls $download_link) v$panel_version"
|
||||||
|
|
||||||
|
echo "Downloading and installing panel version $panel_version..."
|
||||||
|
eval $install_command
|
||||||
|
}
|
||||||
|
|
||||||
uninstall() {
|
uninstall() {
|
||||||
confirm "Are you sure you want to uninstall the panel? xray will also uninstalled!" "n"
|
confirm "Are you sure you want to uninstall the panel? xray will also uninstalled!" "n"
|
||||||
if [[ $? != 0 ]]; then
|
if [[ $? != 0 ]]; then
|
||||||
|
@ -1039,36 +1057,37 @@ show_menu() {
|
||||||
${green}3X-ui Panel Management Script${plain}
|
${green}3X-ui Panel Management Script${plain}
|
||||||
${green}0.${plain} Exit Script
|
${green}0.${plain} Exit Script
|
||||||
————————————————
|
————————————————
|
||||||
${green}1.${plain} Install x-ui
|
${green}1.${plain} Install
|
||||||
${green}2.${plain} Update x-ui
|
${green}2.${plain} Update
|
||||||
${green}3.${plain} Uninstall x-ui
|
${green}3.${plain} Custom Version
|
||||||
|
${green}4.${plain} Uninstall
|
||||||
————————————————
|
————————————————
|
||||||
${green}4.${plain} Reset Username & Password & Secret Token
|
${green}5.${plain} Reset Username & Password & Secret Token
|
||||||
${green}5.${plain} Reset Panel Settings
|
${green}6.${plain} Reset Settings
|
||||||
${green}6.${plain} Change Panel Port
|
${green}7.${plain} Change Port
|
||||||
${green}7.${plain} View Current Panel Settings
|
${green}8.${plain} View Current Settings
|
||||||
————————————————
|
————————————————
|
||||||
${green}8.${plain} Start x-ui
|
${green}9.${plain} Start
|
||||||
${green}9.${plain} Stop x-ui
|
${green}10.${plain} Stop
|
||||||
${green}10.${plain} Restart x-ui
|
${green}11.${plain} Restart
|
||||||
${green}11.${plain} Check x-ui Status
|
${green}12.${plain} Check Status
|
||||||
${green}12.${plain} Check x-ui Logs
|
${green}13.${plain} Check Logs
|
||||||
————————————————
|
————————————————
|
||||||
${green}13.${plain} Enable x-ui On System Startup
|
${green}14.${plain} Enable x-ui On System Startup
|
||||||
${green}14.${plain} Disable x-ui On System Startup
|
${green}15.${plain} Disable x-ui On System Startup
|
||||||
————————————————
|
————————————————
|
||||||
${green}15.${plain} SSL Certificate Management
|
${green}16.${plain} SSL Certificate Management
|
||||||
${green}16.${plain} Cloudflare SSL Certificate
|
${green}17.${plain} Cloudflare SSL Certificate
|
||||||
${green}17.${plain} IP Limit Management
|
${green}18.${plain} IP Limit Management
|
||||||
${green}18.${plain} WARP Management
|
${green}19.${plain} WARP Management
|
||||||
————————————————
|
————————————————
|
||||||
${green}19.${plain} Enable BBR
|
${green}20.${plain} Enable BBR
|
||||||
${green}20.${plain} Update Geo Files
|
${green}21.${plain} Update Geo Files
|
||||||
${green}21.${plain} Active Firewall and open ports
|
${green}22.${plain} Active Firewall and open ports
|
||||||
${green}22.${plain} Speedtest by Ookla
|
${green}23.${plain} Speedtest by Ookla
|
||||||
"
|
"
|
||||||
show_status
|
show_status
|
||||||
echo && read -p "Please enter your selection [0-22]: " num
|
echo && read -p "Please enter your selection [0-23]: " num
|
||||||
|
|
||||||
case "${num}" in
|
case "${num}" in
|
||||||
0)
|
0)
|
||||||
|
@ -1081,67 +1100,70 @@ show_menu() {
|
||||||
check_install && update
|
check_install && update
|
||||||
;;
|
;;
|
||||||
3)
|
3)
|
||||||
check_install && uninstall
|
check_install && custom_version
|
||||||
;;
|
;;
|
||||||
4)
|
4)
|
||||||
check_install && reset_user
|
check_install && uninstall
|
||||||
;;
|
;;
|
||||||
5)
|
5)
|
||||||
check_install && reset_config
|
check_install && reset_user
|
||||||
;;
|
;;
|
||||||
6)
|
6)
|
||||||
check_install && set_port
|
check_install && reset_config
|
||||||
;;
|
;;
|
||||||
7)
|
7)
|
||||||
check_install && check_config
|
check_install && set_port
|
||||||
;;
|
;;
|
||||||
8)
|
8)
|
||||||
check_install && start
|
check_install && check_config
|
||||||
;;
|
;;
|
||||||
9)
|
9)
|
||||||
check_install && stop
|
check_install && start
|
||||||
;;
|
;;
|
||||||
10)
|
10)
|
||||||
check_install && restart
|
check_install && stop
|
||||||
;;
|
;;
|
||||||
11)
|
11)
|
||||||
check_install && status
|
check_install && restart
|
||||||
;;
|
;;
|
||||||
12)
|
12)
|
||||||
check_install && show_log
|
check_install && status
|
||||||
;;
|
;;
|
||||||
13)
|
13)
|
||||||
check_install && enable
|
check_install && show_log
|
||||||
;;
|
;;
|
||||||
14)
|
14)
|
||||||
check_install && disable
|
check_install && enable
|
||||||
;;
|
;;
|
||||||
15)
|
15)
|
||||||
ssl_cert_issue_main
|
check_install && disable
|
||||||
;;
|
;;
|
||||||
16)
|
16)
|
||||||
ssl_cert_issue_CF
|
ssl_cert_issue_main
|
||||||
;;
|
;;
|
||||||
17)
|
17)
|
||||||
iplimit_main
|
ssl_cert_issue_CF
|
||||||
;;
|
;;
|
||||||
18)
|
18)
|
||||||
warp_cloudflare
|
iplimit_main
|
||||||
;;
|
;;
|
||||||
19)
|
19)
|
||||||
enable_bbr
|
warp_cloudflare
|
||||||
;;
|
;;
|
||||||
20)
|
20)
|
||||||
update_geo
|
enable_bbr
|
||||||
;;
|
;;
|
||||||
21)
|
21)
|
||||||
open_ports
|
update_geo
|
||||||
;;
|
;;
|
||||||
22)
|
22)
|
||||||
|
open_ports
|
||||||
|
;;
|
||||||
|
23)
|
||||||
run_speedtest
|
run_speedtest
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
LOGE "Please enter the correct number [0-22]"
|
LOGE "Please enter the correct number [0-23]"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue