From e98fdf569c0f9135e7badb0ace46ffe28f306f6c Mon Sep 17 00:00:00 2001 From: Nikita Tokarchuk Date: Fri, 3 Dec 2021 02:19:47 +0100 Subject: [PATCH] Add fake server identity --- frontend/main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/main.go b/frontend/main.go index 9fe69f2..757f509 100644 --- a/frontend/main.go +++ b/frontend/main.go @@ -13,6 +13,8 @@ import ( var Version = "nightly" +const frontendServerIdentity = "Microsoft-IIS/6.0" + func main() { if viper.GetBool("version") { @@ -48,6 +50,7 @@ func main() { httpServer := fasthttp.Server{ Logger: logrus.StandardLogger(), + Name: frontendServerIdentity, GetOnly: true, }