From 35a2d5da85238740fb79fb8556fbd7c9e9ba4fea Mon Sep 17 00:00:00 2001 From: MickLesk Date: Tue, 11 Aug 2026 08:57:02 +0200 Subject: [PATCH] outline: fix env generation (empty DB user, duplicate secrets, URL sed) --- install/outline-install.sh | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/install/outline-install.sh b/install/outline-install.sh index d270ae440..3ad717b4d 100644 --- a/install/outline-install.sh +++ b/install/outline-install.sh @@ -22,27 +22,31 @@ msg_ok "Installed Dependencies" NODE_VERSION="26" NODE_MODULE="corepack" setup_nodejs PG_VERSION="16" setup_postgresql -PG_DB_NAME="outline" PG_DB_USER="outline" setup_postgresql_db +PG_DB_NAME="outline" +PG_DB_USER="outline" +setup_postgresql_db fetch_and_deploy_gh_release "outline" "outline/outline" "tarball" msg_info "Configuring Outline (Patience)" SECRET_KEY="$(openssl rand -hex 32)" +UTILS_SECRET="$(openssl rand -hex 32)" cd /opt/outline cp .env.sample .env export NODE_ENV=development -sed -i 's/NODE_ENV=production/NODE_ENV=development/g' /opt/outline/.env -sed -i "s/generate_a_new_key/${SECRET_KEY}/g" /opt/outline/.env -sed -i "s/user:pass@postgres/${PG_DB_USER}:${PG_DB_PASS}@localhost/g" /opt/outline/.env -sed -i 's/redis:6379/localhost:6379/g' /opt/outline/.env -sed -i "5s#URL=#URL=http://${LOCAL_IP}#g" /opt/outline/.env -sed -i 's/FORCE_HTTPS=true/FORCE_HTTPS=false/g' /opt/outline/.env +sed -i "s#^NODE_ENV=.*#NODE_ENV=development#" /opt/outline/.env +sed -i "s#^SECRET_KEY=.*#SECRET_KEY=${SECRET_KEY}#" /opt/outline/.env +sed -i "s#^UTILS_SECRET=.*#UTILS_SECRET=${UTILS_SECRET}#" /opt/outline/.env +sed -i "s#^DATABASE_URL=.*#DATABASE_URL=postgres://${PG_DB_USER}:${PG_DB_PASS}@localhost:5432/${PG_DB_NAME}#" /opt/outline/.env +sed -i "s#^REDIS_URL=.*#REDIS_URL=redis://localhost:6379#" /opt/outline/.env +sed -i "s#^URL=.*#URL=http://${LOCAL_IP}#" /opt/outline/.env +sed -i "s#^FORCE_HTTPS=.*#FORCE_HTTPS=false#" /opt/outline/.env export NODE_OPTIONS="--max-old-space-size=3584" export COREPACK_ENABLE_DOWNLOAD_PROMPT=0 $STD yarn install --immutable export NODE_ENV=production -sed -i 's/NODE_ENV=development/NODE_ENV=production/g' /opt/outline/.env +sed -i "s#^NODE_ENV=.*#NODE_ENV=production#" /opt/outline/.env $STD yarn build msg_ok "Configured Outline"