diff --git a/install/domain-locker-install.sh b/install/domain-locker-install.sh index 4c6e5a127..7ffbac815 100644 --- a/install/domain-locker-install.sh +++ b/install/domain-locker-install.sh @@ -22,7 +22,7 @@ fetch_and_deploy_gh_release "domain-locker" "Lissy93/domain-locker" msg_info "Building Domain-Locker" cd /opt/domain-locker npm install --legacy-peer-deps -export NODE_OPTIONS="--max-old-space-size=4096" +export NODE_OPTIONS="--max-old-space-size=6144" cat </opt/domain-locker.env # Database connection DL_PG_HOST=localhost diff --git a/install/miniflux-install.sh b/install/miniflux-install.sh index 51a2ec068..69c3488bd 100644 --- a/install/miniflux-install.sh +++ b/install/miniflux-install.sh @@ -32,8 +32,8 @@ ADMIN_NAME=admin ADMIN_PASS="$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | head -c13)" cat </etc/miniflux.conf # See https://miniflux.app/docs/configuration.html -DATABASE_URL=postgres://$DB_USER:$DB_PASS@localhost:5432/$DB_NAME?sslmode=disable -DATABASE_URL="user=$DB_USER password=postgres dbname=miniflux2 sslmode=disable" +#DATABASE_URL=postgres://$DB_USER:$DB_PASS@localhost:5432/$DB_NAME?sslmode=disable +DATABASE_URL="user=$DB_USER password=$DB_PASS dbname=$DB_NAME" CREATE_ADMIN=1 ADMIN_USERNAME=$ADMIN_NAME ADMIN_PASSWORD=$ADMIN_PASS