[Box-Admins] Re: Jenkins reliability ( was Re: [squeak-dev] 6 tests to go...)

Chris Cunnington smalltalktelevision at gmail.com
Wed Oct 24 21:15:57 UTC 2012


On 2012-10-24 5:09 PM, Levente Uzonyi wrote:
> On Wed, 24 Oct 2012, Chris Cunnington wrote:
>
>> On 2012-10-24 4:44 PM, Levente Uzonyi wrote:
>>       I think I found the reason why the server is so unresponsive. 
>> Apache is configured as a forward proxy too and probably bots found 
>> it out quickly. They are probably proxying requests through the
>>       server which eats up the bandwidth.
>>
>>       ProxyRequests should be changed to Off ASAP.
>>
>>
>>       Levente
>>
>>
>> <VirtualHost *:80>
>>      ServerName www.squeakci.org
>>      ServerAlias squeakci.org
>>      ProxyRequests Off
>>      ProxyPreserveHost On
>>      ProxyPass / http://www.squeakci.org:8080/
>>      ProxyPassReverse / http://www.squeakci.org:8080/
>
> I guess the last 2 line should be
>
>       ProxyPass / http://127.0.0.1:8080/
>       ProxyPassReverse / http://127.0.0.1:8080/
>
> And there should be a proxy section here. Something like this:
>
>         <Proxy *>
>                 Order deny,allow
>                 Allow from all
>         </Proxy>
>
>
> Levente

<VirtualHost *:80>
         ServerName www.squeakci.org
         ServerAlias squeakci.org
         ProxyRequests Off
         ProxyPreserveHost On
         ProxyPass / http://127.0.0.1:8080/
         ProxyPassReverse / http://127.0.0.1:8080/
</VirtualHost>

And restarted.

Let's try this stanza before we add the <Proxy *> stuff.

Chris




More information about the Box-Admins mailing list