wildfly没有上传大文件

时间:2018-07-11 06:42:57

标签: 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" 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"/>

问题是,当我在本地窗口计算机上上传文件时,它工作正常,但在其他计算机上却没有娱乐性

  

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

0 个答案:

没有答案