Add support for listening on Unix socket.

For that to work, specify the config option `Address` with `unix:/path/to/socket/file`.

Closes #1477
This commit is contained in:
Deluan 2023-03-29 16:05:31 -04:00
parent 628fd69d3d
commit cf804a52ef
2 changed files with 23 additions and 6 deletions

View file

@ -103,7 +103,7 @@ func startServer(ctx context.Context) func() error {
if strings.HasPrefix(conf.Server.UILoginBackgroundURL, "/") {
a.MountRouter("Background images", consts.DefaultUILoginBackgroundURL, backgrounds.NewHandler())
}
return a.Run(ctx, fmt.Sprintf("%s:%d", conf.Server.Address, conf.Server.Port), conf.Server.TLSCert, conf.Server.TLSKey)
return a.Run(ctx, conf.Server.Address, conf.Server.Port, conf.Server.TLSCert, conf.Server.TLSKey)
}
}