Home > Blockchain >  ZIO HTTP configuration for max request size
ZIO HTTP configuration for max request size

Time:12-28

I want to upload a file using ZIO HTTP, but it gives 413 code, the payload is too large.
I can't figure out how to change the configuration of the underlying Netty server to fix the issue.

Any help would be appreciated.

CodePudding user response:

After looking at the source code I have figured it out:

private val server =
    Server.port(8090)   
    Server.maxRequestSize(maxRequestSize)   
    Server.app(routes)
  • Related