Configuration wildfly没有上载大文件

Configuration wildfly没有上载大文件,configuration,httpd.conf,wildfly-10,apache2.2,large-file-upload,Configuration,Httpd.conf,Wildfly 10,Apache2.2,Large File Upload,以下是我的Standalone.xml连接器配置 <server name="default-server"> <ajp-listener name="ajp-ofs" socket-binding="ajp" scheme="https"/> <http-listener name="default" socket-binding="http" redirect-socket="https"

以下是我的Standalone.xml连接器配置

            <server name="default-server">
            <ajp-listener name="ajp-ofs" socket-binding="ajp" scheme="https"/>
            <http-listener name="default" socket-binding="http" redirect-socket="https" enable-http2="true"/>
            <https-listener name="https" socket-binding="https" max-post-size="100000000" security-realm="ApplicationRealm" enable-http2="true"/>
            <host name="default-host" alias="localhost">
                <location name="/" handler="welcome-content"/>
                <location name="/images" handler="images"/>
                <location name="/js" handler="js"/>
                <location name="/css" handler="css"/>
                <filter-ref name="server-header"/>
                <filter-ref name="x-powered-by-header"/>
            </host>
        </server>

下面是套接字绑定

   <socket-binding name="ajp" port="${jboss.ajp.port:8009}"/>
    <socket-binding name="http" port="${jboss.http.port:8080}"/>
    <socket-binding name="https" port="${jboss.https.port:8443}"/>
    <socket-binding name="iiop" interface="unsecure" port="3528"/>
    <socket-binding name="iiop-ssl" interface="unsecure" port="3529"/>

问题是,当我在本地窗口机器上上传一个文件时,它可以正常工作,但在其他机器上它并没有娱乐性

最大邮件大小=“100000000” 任何建议或任何可能性让我惊讶的是,他们的代理,Web服务是从Apache/2.2.15(Unix)调用的,Apache最终通过mode_jk连接到wildfly10.0.1。对于mode_jk,我们使用的是ajp侦听器,我在ajp侦听器中添加了max post size=“100000000”,在ajp侦听器中添加了max ajp packet size=“100000000”。但是没有成功


请给我建议解决办法。我已经浪费了很多时间。可能是您的服务器位于代理(nginx等)后面,并且此代理有自己的帖子大小限制。感谢回复CyberWasp,它在本地计算机上运行良好,但在实时环境中,使用相同的配置会产生问题。而且它们不是代理。@CyberWasp是的,我很惊讶它们是代理,Web服务是从Apache/2.2.15(Unix)调用的,Apache最终通过模式_jk连接到wildfly10.0.1。对于mode_jk,我们使用的是ajp侦听器,我在ajp侦听器中添加了max post size=“100000000”,在ajp侦听器中添加了max ajp packet size=“100000000”。但是没有成功