如何增加Elastic Beanstalk上的Spring Boot应用程序的client_max_body_size?

时间:2019-04-23 12:35:51

标签: java spring-boot amazon-elastic-beanstalk

我已经使用Gradle的build/bootJar创建了Spring Boot应用程序.jar文件,然后将其部署到Elastic Beanstalk。但是当我对大数据执行POST请求时,会收到以下错误消息:

<html>
    <head>
        <title>413 Request Entity Too Large</title>
    </head>
    <body bgcolor="white">
        <center>
            <h1>413 Request Entity Too Large</h1>
        </center>
        <hr>
        <center>nginx/1.14.1</center>
    </body>
</html>

我尝试将client_max_body_size 50M;添加到位于myconf.conf的{​​{1}}文件中,然后重建并重新部署.jar文件,但这不起作用。

我还尝试过移动相同的{project_root}/.ebextensions/nginx/conf.d/myconf.conf文件夹.ebextensions,但该文件夹也不起作用。

还有什么我可以尝试的吗?我想知道使用{proejct_root}/src创建.jar是否正确。

0 个答案:

没有答案