fix order

This commit is contained in:
Laptop
2025-02-10 18:43:54 +02:00
parent 3be1bffd01
commit ffdb10be19

View File

@@ -73,13 +73,13 @@ var DNSCacheTTL = 60 * time.Minute
// // // some webserver configuration, put here to make it easier to configure what you need // // // // // // 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 // 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 // where to listen
// can be tcp4 (bind to ipv4 address), tcp6 (bind to ipv6 address) or unix (bind to unix socket) // can be tcp4 (bind to ipv4 address), tcp6 (bind to ipv6 address) or unix (bind to unix socket)
var Network = "tcp4" 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 // 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 // each one will be a separate process, so they will have separate cache
var Prefork = false var Prefork = false