From 3fe25cd0aa31800f5fe396960fbf416862f45d67 Mon Sep 17 00:00:00 2001 From: Tom Frenzel Date: Sat, 3 Jan 2026 14:52:07 +0100 Subject: [PATCH] remove custom domain configuration --- install/kutt-install.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/install/kutt-install.sh b/install/kutt-install.sh index 102b49e34..1926e63cc 100644 --- a/install/kutt-install.sh +++ b/install/kutt-install.sh @@ -13,18 +13,12 @@ setting_up_container network_check update_os -read -r -p "${TAB3}Enter the hostname of your Kutt instance (eg kutt.domain.tld): " kutt_host -if [[ "$kutt_host" ]]; then - KUTT_HOST="$kutt_host" -fi - NODE_VERSION="22" setup_nodejs fetch_and_deploy_gh_release "kutt" "thedevs-network/kutt" "tarball" msg_info "Configuring Kutt" cd /opt/kutt cp .example.env ".env" -sed -i "s|DEFAULT_DOMAIN=localhost:3000|DEFAULT_DOMAIN=${KUTT_HOST}|g" ".env" sed -i "s|JWT_SECRET=|JWT_SECRET=$(openssl rand -base64 32)|g" ".env" $STD npm install $STD npm run migrate