fix: viewer port disabled by default — opt-in via Settings

This commit is contained in:
Claus Lohmar 2026-08-06 19:25:36 +01:00
parent c0491143fd
commit f1a6243dac
2 changed files with 2 additions and 2 deletions

View file

@ -85,7 +85,7 @@ func DefaultConfig() Config {
Server: ServerConfig{ Server: ServerConfig{
Port: ":8080", Port: ":8080",
BindHost: "0.0.0.0", BindHost: "0.0.0.0",
ViewerPort: ":8090", ViewerPort: "",
}, },
Storage: StorageConfig{ Storage: StorageConfig{
RecordingsPath: "/mnt/recordings", RecordingsPath: "/mnt/recordings",

View file

@ -2,7 +2,7 @@
"server": { "server": {
"port": ":8080", "port": ":8080",
"bind_host": "0.0.0.0", "bind_host": "0.0.0.0",
"viewer_port": ":8090" "viewer_port": ""
}, },
"storage": { "storage": {
"recordings_path": "/mnt/recordings", "recordings_path": "/mnt/recordings",