[bugfix] handle HEAD requests more elegantly (#2055)

Signed-off-by: kim <grufwub@gmail.com>
This commit is contained in:
kim 2023-08-02 09:28:20 +01:00 committed by GitHub
parent cec29e2a8d
commit 24516b84c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -181,6 +181,7 @@ func New(ctx context.Context) (Router, error) {
// create the actual engine here -- this is the core request routing handler for gts
engine := gin.New()
engine.MaxMultipartMemory = maxMultipartMemory
engine.HandleMethodNotAllowed = true
// set up IP forwarding via x-forward-* headers.
trustedProxies := config.GetTrustedProxies()