diff --git a/btn-deploy/oracle/cloud-config.template.yaml b/btn-deploy/oracle/cloud-config.template.yaml index e3c5740d6..377f2f00a 100644 --- a/btn-deploy/oracle/cloud-config.template.yaml +++ b/btn-deploy/oracle/cloud-config.template.yaml @@ -11,7 +11,7 @@ packages: runcmd: - cd /opt - - bash -c "export CREATE_EASYSETUP_LINK="true"; curl i.hiddify.com/release|bash -s -- --no-gui" + - bash -c "export CREATE_EASYSETUP_LINK="true"; curl https://i.hiddify.com/release|bash -s -- --no-gui" final_message: "The system is finally up, after $UPTIME seconds" output: { all: "| tee -a /root/cloud-init-output.log" } diff --git a/common/download.sh b/common/download.sh index 79dd350bc..1eca0df45 100755 --- a/common/download.sh +++ b/common/download.sh @@ -11,7 +11,7 @@ echo "$0 input params are $@" if [[ " $@ " != *"--no-gui"* ]] && [[ "$0" == "bash" ]]; then echo "This script is deprecated! Please use the following command" echo "" - echo "bash <(curl i.hiddify.com/$1)" + echo "bash <(curl https://i.hiddify.com/$1)" echo "" exit 1 fi diff --git a/operations/lxd/setup_lxc_container.sh b/operations/lxd/setup_lxc_container.sh index fd312388d..c378087c0 100644 --- a/operations/lxd/setup_lxc_container.sh +++ b/operations/lxd/setup_lxc_container.sh @@ -87,9 +87,9 @@ setup_container() { lxc exec $LXC_CONTAINER_NAME -- apt-get install -y apt-transport-https ca-certificates curl wget gnupg-agent software-properties-common git jq if [ $DEBUG -eq 1 ]; then - lxc exec $LXC_CONTAINER_NAME -- bash -x -c "cd /opt && export CREATE_EASYSETUP_LINK='true'; sleep 5; curl i.hiddify.com/release|bash -x -s -- --no-gui; exit 0" + lxc exec $LXC_CONTAINER_NAME -- bash -x -c "cd /opt && export CREATE_EASYSETUP_LINK='true'; sleep 5; curl https://i.hiddify.com/release|bash -x -s -- --no-gui; exit 0" else - lxc exec $LXC_CONTAINER_NAME -- bash -c "cd /opt && export CREATE_EASYSETUP_LINK='true'; sleep 5;curl i.hiddify.com/release|bash -s -- --no-gui; exit 0" + lxc exec $LXC_CONTAINER_NAME -- bash -c "cd /opt && export CREATE_EASYSETUP_LINK='true'; sleep 5;curl https://i.hiddify.com/release|bash -s -- --no-gui; exit 0" fi else echo -e "Container $LXC_CONTAINER_NAME already exists.\n" diff --git a/other/deprecated/ss-azure-template.json b/other/deprecated/ss-azure-template.json index c93e32c76..54df8f65c 100644 --- a/other/deprecated/ss-azure-template.json +++ b/other/deprecated/ss-azure-template.json @@ -214,7 +214,7 @@ "autoUpgradeMinorVersion": true, "settings": { "fileUris": [], - "commandToExecute": "export CREATE_EASYSETUP_LINK='true'; curl i.hiddify.com/release|bash -s -- --no-gui" + "commandToExecute": "export CREATE_EASYSETUP_LINK='true'; curl https://i.hiddify.com/release|bash -s -- --no-gui" } } },