Increase http request size limit

This commit is contained in:
Martin Ondejka 2024-05-28 15:58:36 +02:00
parent 352d900fea
commit 743691ca24

View file

@ -31,7 +31,8 @@ import (
) )
const ( const (
maxRequestContentLength = 1024 * 1024 * 5 // ZEKO NOTE: We allow much larger requests than the default 5MB
maxRequestContentLength = 1024 * 1024 * 1024 * 5 // 5GB
contentType = "application/json" contentType = "application/json"
) )