diff --git a/docs/references/selfhosting.md b/docs/references/selfhosting.md index bba08701f..4fca57183 100644 --- a/docs/references/selfhosting.md +++ b/docs/references/selfhosting.md @@ -106,7 +106,7 @@ above. Doing this will allow the Cloudron to start up with a valid TLS certifica SSH into your server and run the following commands: ``` -wget https://git.cloudron.io/cloudron/box/raw/master/scripts/cloudron-setup +wget https://git.cloudron.io/cloudron/box/raw/v0.92.1/scripts/cloudron-setup chmod +x cloudron-setup ./cloudron-setup --domain --provider ``` @@ -344,7 +344,7 @@ To upgrade follow these steps closely: Similar to the initial installation, a Cloudron upgrade looks like: ``` $ ssh root@newserverip -> wget https://git.cloudron.io/cloudron/box/raw/master/scripts/cloudron-setup +> wget https://git.cloudron.io/cloudron/box/raw/v0.92.1/scripts/cloudron-setup > chmod +x cloudron-setup > ./cloudron-setup --domain --provider --encryption-key --restore-url ``` diff --git a/scripts/cloudron-setup b/scripts/cloudron-setup index c83aa5c58..33ae59546 100755 --- a/scripts/cloudron-setup +++ b/scripts/cloudron-setup @@ -8,7 +8,7 @@ if [[ ${EUID} -ne 0 ]]; then fi # change this to a hash when we make a upgrade release -readonly INSTALLER_REVISION="master" +readonly INSTALLER_REVISION="v0.92.1" readonly INIT_BASESYSTEM_SCRIPT_URL="https://git.cloudron.io/cloudron/box/raw/${INSTALLER_REVISION}/baseimage/initializeBaseUbuntuImage.sh" readonly INSTALLER_SOURCE_DIR="/home/yellowtent/installer" readonly LOG_FILE="/var/log/cloudron-setup.log"