diff options
-rw-r--r-- | server.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server.go b/server.go index 793345d..0681a34 100644 --- a/server.go +++ b/server.go @@ -127,7 +127,7 @@ func main() { Output: law.NewWriteAsyncer(os.Stdout, nil), Format: "${protocol} ${method} ${status} ${host} ${url} ${respHeader:Location}\n", }), func(c *fiber.Ctx) bool { - return c.Hostname() != "fly-internal" + return c.Hostname() == "fly-internal" })) toplevel.Use(func(c *fiber.Ctx) error { host := hosts[c.Hostname()] |