fix: viewer port disabled by default — opt-in via Settings
This commit is contained in:
parent
c0491143fd
commit
f1a6243dac
2 changed files with 2 additions and 2 deletions
|
|
@ -85,7 +85,7 @@ func DefaultConfig() Config {
|
|||
Server: ServerConfig{
|
||||
Port: ":8080",
|
||||
BindHost: "0.0.0.0",
|
||||
ViewerPort: ":8090",
|
||||
ViewerPort: "",
|
||||
},
|
||||
Storage: StorageConfig{
|
||||
RecordingsPath: "/mnt/recordings",
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
"server": {
|
||||
"port": ":8080",
|
||||
"bind_host": "0.0.0.0",
|
||||
"viewer_port": ":8090"
|
||||
"viewer_port": ""
|
||||
},
|
||||
"storage": {
|
||||
"recordings_path": "/mnt/recordings",
|
||||
|
|
|
|||
Loading…
Reference in a new issue