From b069cab1e3a72bb396e441962d7b636d48a16828 Mon Sep 17 00:00:00 2001 From: cclohmar Date: Mon, 6 Jul 2026 08:54:58 +0100 Subject: [PATCH] fix(deploy): default server port to 80 (reverse proxy standard) - Change config template in deploy.sh from port 8080 to port 80 - A reverse proxy must listen on port 80 for public HTTP traffic - CAP_NET_BIND_SERVICE allows non-root binding to low ports --- deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.sh b/deploy.sh index db0fb54..2d7bf32 100755 --- a/deploy.sh +++ b/deploy.sh @@ -101,7 +101,7 @@ if [ ! -f "$CONFIG_PATH" ]; then # Generated: $(date) server: host: "0.0.0.0" - port: 8080 + port: 80 admin: secret_token: "${ADMIN_TOKEN}"