nginx出现 “414 request-uri too large”
Posted 木易森林
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx出现 “414 request-uri too large”相关的知识,希望对你有一定的参考价值。
公司项目有一个模块,在请求查询的时候使用了Get方法,由于拼接的url过长,导致nginx出现了“414 request-uri too large”错误。出现这种问题可以按照如下解决:
在nginx的nginx.conf修改如下参数的:
<code class="language-plain"> client_header_buffer_size 512k; large_client_header_buffers 4 512k;</code>
以上是关于nginx出现 “414 request-uri too large”的主要内容,如果未能解决你的问题,请参考以下文章
nginx出现 “414 request-uri too large”