print a warning if resourced is disabled

This commit is contained in:
blek 2023-11-11 18:02:04 +10:00 committed by blek! Git
parent cdcecad84d
commit f976c85e48
1 changed files with 4 additions and 0 deletions

View File

@ -86,6 +86,10 @@ func main() {
ProxyCacheMinSize = int(cache_min)
conf.Validate()
if ! conf.ResourceD.Enabled {
fmt.Println("\x1b[33m[warn] resourceD is disabled. No resources will be served\x1b[0m")
}
app := fiber.New(fiber.Config {
Prefork: true,