From 617b4443f981200571349c637bad268afcfdad8f Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Wed, 25 Mar 2026 16:19:04 +0100 Subject: [PATCH] fix(tubearchivist): correct port to 8080 backend_start.py reads TA_BACKEND_PORT (default 8080), not TA_PORT. Fix .env var name and all port references from 8000 to 8080. --- ct/tubearchivist.sh | 2 +- install/tubearchivist-install.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ct/tubearchivist.sh b/ct/tubearchivist.sh index 5577ef9f..b174e825 100644 --- a/ct/tubearchivist.sh +++ b/ct/tubearchivist.sh @@ -74,7 +74,7 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8000${CL}" +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080${CL}" echo -e "${INFO}${YW} Credentials:${CL}" echo -e "${TAB}${BGN}Username: admin${CL}" echo -e "${TAB}${BGN}Password: see ~/tubearchivist.creds${CL}" diff --git a/install/tubearchivist-install.sh b/install/tubearchivist-install.sh index 404f3087..a03a0a5d 100644 --- a/install/tubearchivist-install.sh +++ b/install/tubearchivist-install.sh @@ -81,10 +81,10 @@ fi TA_PASSWORD=$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | head -c13) ES_PASSWORD=$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | head -c13) cat </opt/tubearchivist/.env -TA_HOST=http://${LOCAL_IP}:8000 +TA_HOST=http://${LOCAL_IP}:8080 TA_USERNAME=admin TA_PASSWORD=${TA_PASSWORD} -TA_PORT=8000 +TA_BACKEND_PORT=8080 ELASTIC_PASSWORD=${ES_PASSWORD} REDIS_CON=redis://localhost:6379 ES_URL=http://localhost:9200