Update sites.inc

This commit is contained in:
2023-11-12 13:00:45 -06:00
parent 11fb8fb7b9
commit 0311e6fd33

View File

@@ -867,9 +867,23 @@ SITEINFO(){
echo -e "\033[12A"
;;
*)
echo -e "\n\033[K\n\033[K"
NEWPROXYSITE_CREATE ${site} ${servernames} ${server} ${port} ${scheme} ${wbskt} ${hsts} ${explt} ${lock} ${ssl}
break 3
echo -en "\033[1A\033[K\r${idsCL[LightCyan]}Configuring changes ... ${idsCL[Default]}"
NEWPROXYSITE_CREATE ${site} ${servernames} ${server} ${port} ${scheme} ${wbskt} ${hsts} ${explt} ${lock} ${ssl} >/dev/null 2>&1
echo -e "${idsCL[LightGreen]}Done${idsCL[Default]}"
echo
echo -en "${idsCL[LightCyan]}Continue or Exit (C/e): ${idsCL[Default]}"
read -n1 con
case "${con}" in
[Ee])
echo -e "\n\033[K\n\033[K"
exit 0
;;
*)
echo -e "\r\033[K\n\r\033[K\n\r\033[K"
echo -e "\033[17A"; for (( c=1; c<=17; c++ )); do echo -e "\r\033[K"; done; echo -e "\033[17A"
echo -e "\n\n\n\n\n\n\n\n"
;;
esac
;;
esac