fix: bind to 0.0.0.0 instead of 127.0.0.1 — accessible from LAN

This commit is contained in:
Claus Lohmar 2026-08-05 10:08:05 +01:00
parent c2f87105e7
commit 7359357a0b
2 changed files with 2 additions and 2 deletions

View file

@ -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",

View file

@ -3,7 +3,7 @@
server:
port: ":8080"
bind_host: "127.0.0.1"
bind_host: "0.0.0.0"
storage:
recordings_path: "/mnt/recordings"