From 21d857e7ad252c9750a0ddd2e4b08f9391536219 Mon Sep 17 00:00:00 2001
From: Strana-Mechty <124194364+Strana-Mechty@users.noreply.github.com>
Date: Mon, 30 Dec 2024 17:43:08 +0100
Subject: [PATCH] Fix wrong port being printed post install. (#1105)

At the conclusion of the setup the msg_ok block tells the user to use port 8080, this should be 8000.
---
 ct/archivebox.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ct/archivebox.sh b/ct/archivebox.sh
index 53849d001..1a6e2b745 100644
--- a/ct/archivebox.sh
+++ b/ct/archivebox.sh
@@ -57,4 +57,4 @@ 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}:8080/admin/login${CL}"
\ No newline at end of file
+echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8000/admin/login${CL}"