logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: ProxyIOBufferSize limiting file transfer
Author
Vidar



Joined: 24 Apr 2014
Posts: 3
Location: Belgium

PostPosted: Thu 10 Mar '16 16:13    Post subject: ProxyIOBufferSize limiting file transfer Reply with quote

I am running Apache 2.2 on Suse Linux to provision Alfresco to a number of users. Everything runs great with this code:
Code:

<VirtualHost *:80>
 ServerAdmin email
 ServerName url
 ServerAlias url.domain

 RewriteEngine on
 RewriteCond %{REQUEST_URI} ^/$
 RewriteRule (.*) /share [R]

 LimitRequestFieldSize 32000
 ProxyIOBufferSize 32000

 ProxyPass /share ajp://servername:9009/share
 ProxyPassReverse /share ajp://servername:9009/share
</VirtualHost>


I need to migrate all proxies to 1 new Apache 2.4.10 on Suse. At that point I just copied over the above code which works for the most part. Only the kerberos users that are in many groups could not SSO login (which was the same problem as I had several months ago and to which point I added limitrequest en proxyio settings). When I put the LimitRequestFieldSize in the httpd.conf and keep the ProxyIOBufferSize in the VirtualHost config file the person can log back in.

A bit later I received another call that suddenly they could not upload big files to Alfresco. And then I noticed that when I remove the ProxyIOBufferSize config in the VirtualHost, I can do the upload but several users can not login.

Has anyone experienced this before? Am I missing anything?
Back to top


Reply to topic   Topic: ProxyIOBufferSize limiting file transfer View previous topic :: View next topic
Post new topic   Forum Index -> Apache