🐛 Fix large JWT headers
This commit is contained in:
parent
0932a5e94a
commit
39cda65208
@ -32,6 +32,7 @@ func NewServer() *App {
|
|||||||
JSONEncoder: jsoniter.ConfigCompatibleWithStandardLibrary.Marshal,
|
JSONEncoder: jsoniter.ConfigCompatibleWithStandardLibrary.Marshal,
|
||||||
JSONDecoder: jsoniter.ConfigCompatibleWithStandardLibrary.Unmarshal,
|
JSONDecoder: jsoniter.ConfigCompatibleWithStandardLibrary.Unmarshal,
|
||||||
BodyLimit: 512 * 1024 * 1024 * 1024, // 512 TiB
|
BodyLimit: 512 * 1024 * 1024 * 1024, // 512 TiB
|
||||||
|
ReadBufferSize: 5 * 1024 * 1024, // 5MB for large JWT
|
||||||
EnablePrintRoutes: viper.GetBool("debug.print_routes"),
|
EnablePrintRoutes: viper.GetBool("debug.print_routes"),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user