From ffdb10be190717f25d1ecfed27ec4796266a0473 Mon Sep 17 00:00:00 2001 From: Laptop Date: Mon, 10 Feb 2025 18:43:54 +0200 Subject: [PATCH] fix order --- lib/cfg/init.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/cfg/init.go b/lib/cfg/init.go index 7c0d25b..dfc3530 100644 --- a/lib/cfg/init.go +++ b/lib/cfg/init.go @@ -73,13 +73,13 @@ var DNSCacheTTL = 60 * time.Minute // // // some webserver configuration, put here to make it easier to configure what you need // // // // more info can be found here: https://docs.gofiber.io/api/fiber#config -// run soundcloak on this address (localhost:4664 by default) -var Addr = ":4664" - // where to listen // can be tcp4 (bind to ipv4 address), tcp6 (bind to ipv6 address) or unix (bind to unix socket) var Network = "tcp4" +// run soundcloak on this address (localhost:4664 by default) +var Addr = ":4664" + // run multiple instances of soundcloak locally to be able to handle more requests // each one will be a separate process, so they will have separate cache var Prefork = false