From 7359357a0bb7ffdfb87987c4e8fe212d92abe8bc Mon Sep 17 00:00:00 2001 From: cclohmar Date: Wed, 5 Aug 2026 10:08:05 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20bind=20to=200.0.0.0=20instead=20of=20127?= =?UTF-8?q?.0.0.1=20=E2=80=94=20accessible=20from=20LAN?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.go | 2 +- config.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.go b/config.go index 87140a9..fe58be6 100644 --- a/config.go +++ b/config.go @@ -73,7 +73,7 @@ func DefaultConfig() Config { return Config{ Server: ServerConfig{ Port: ":8080", - BindHost: "127.0.0.1", + BindHost: "0.0.0.0", }, Storage: StorageConfig{ RecordingsPath: "/mnt/recordings", diff --git a/config.yaml b/config.yaml index f8492cf..d59496a 100644 --- a/config.yaml +++ b/config.yaml @@ -3,7 +3,7 @@ server: port: ":8080" - bind_host: "127.0.0.1" + bind_host: "0.0.0.0" storage: recordings_path: "/mnt/recordings"