From 71a1386f136ca7fab2f034549ba4a9cab875d693 Mon Sep 17 00:00:00 2001 From: Deeman Date: Fri, 27 Feb 2026 17:31:18 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20bind=20Gitea=20to=20127.0.0.1=20only=20?= =?UTF-8?q?=E2=80=94=20not=20exposed=20to=20internet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit nginx proxy manager reaches it via localhost. No reason to bind to all interfaces. Co-Authored-By: Claude Sonnet 4.6 --- gitea/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitea/docker-compose.yml b/gitea/docker-compose.yml index deafe97..1d01c08 100644 --- a/gitea/docker-compose.yml +++ b/gitea/docker-compose.yml @@ -4,7 +4,7 @@ services: container_name: gitea restart: always ports: - - "3100:3000" + - "127.0.0.1:3100:3000" volumes: - /data/server-infra/gitea:/data - /etc/timezone:/etc/timezone:ro