From d03ffd881e4a8bd93a2936556fd09214b4ad0bd1 Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Fri, 26 Jul 2024 18:19:33 -0700 Subject: Make Bonjour optional and disabled by default Bonjour doesn't seem happy inside Docker, so I'm making it optional and off by default. --- hotline/config.go | 1 + 1 file changed, 1 insertion(+) (limited to 'hotline') diff --git a/hotline/config.go b/hotline/config.go index 1ad0ec2..a7bd81e 100644 --- a/hotline/config.go +++ b/hotline/config.go @@ -14,4 +14,5 @@ type Config struct { MaxConnectionsPerIP int `yaml:"MaxConnectionsPerIP"` // Max connections per IP PreserveResourceForks bool `yaml:"PreserveResourceForks"` // Enable preservation of file info and resource forks in sidecar files IgnoreFiles []string `yaml:"IgnoreFiles"` // List of regular expression for filtering files from the file list + EnableBonjour bool `yaml:"EnableBonjour"` // Enable service announcement on local network with Bonjour } -- cgit