最大请求大小的 ZIO HTTP 配置
ZIO HTTP configuration for max request size
我想使用 ZIO HTTP 上传文件,但它给出了 413 代码,负载太大。
我不知道如何更改底层 Netty 服务器的配置来解决这个问题。
如有任何帮助,我们将不胜感激。
看了源码我明白了:
private val server =
Server.port(8090) ++
Server.maxRequestSize(maxRequestSize) ++
Server.app(routes)
我想使用 ZIO HTTP 上传文件,但它给出了 413 代码,负载太大。
我不知道如何更改底层 Netty 服务器的配置来解决这个问题。
如有任何帮助,我们将不胜感激。
看了源码我明白了:
private val server =
Server.port(8090) ++
Server.maxRequestSize(maxRequestSize) ++
Server.app(routes)