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{
Port: ":8080",
BindHost: "0.0.0.0",
ViewerPort: ":8090",
ViewerPort: "",
},
Storage: StorageConfig{
RecordingsPath: "/mnt/recordings",

View file

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