From f1a6243dac7ac73f0bb5a56cc460f010c32b7e09 Mon Sep 17 00:00:00 2001 From: cclohmar Date: Thu, 6 Aug 2026 19:25:36 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20viewer=20port=20disabled=20by=20default?= =?UTF-8?q?=20=E2=80=94=20opt-in=20via=20Settings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.go | 2 +- config.json.sample | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.go b/config.go index 3f400bb..3477d4b 100644 --- a/config.go +++ b/config.go @@ -85,7 +85,7 @@ func DefaultConfig() Config { Server: ServerConfig{ Port: ":8080", BindHost: "0.0.0.0", - ViewerPort: ":8090", + ViewerPort: "", }, Storage: StorageConfig{ RecordingsPath: "/mnt/recordings", diff --git a/config.json.sample b/config.json.sample index e469649..3e352cf 100644 --- a/config.json.sample +++ b/config.json.sample @@ -2,7 +2,7 @@ "server": { "port": ":8080", "bind_host": "0.0.0.0", - "viewer_port": ":8090" + "viewer_port": "" }, "storage": { "recordings_path": "/mnt/recordings",