DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=37770>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=37770


[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[EMAIL PROTECTED]




------- Additional Comments From [EMAIL PROTECTED]  2007-05-21 00:53 -------
I believe I'm running into this problem as well. My situation is similar to post
#46 except I'm on apache 2.2.3 (64bit). I noticed the problem immediately after
deploying my rails app to a new server; my mongrels completely freeze after
little bit of inactivity. Some information about my setup:

Linux web001 2.6.16.27-0.9-smp #1 SMP Tue Feb 13 09:35:18 UTC 2007 x86_64 x86_64
x86_64 GNU/Linux

<VirtualHost *:80>
  ServerName demo
  DocumentRoot '/demo/public'

  <Location />
    Order deny,allow
    Allow from all
  </Location>

  <Directory '/demo/public'>
    Options FollowSymLinks
    AllowOverride None
  </Directory>

  RewriteEngine On

  # Check for maintenance file and redirect all requests
  RewriteCond %{DOCUMENT_ROOT}/system/maintenance_demo.html -f
  RewriteCond %{SCRIPT_FILENAME} !maintenance_demo.html
  RewriteRule ^.*$ /system/maintenance_demo.html [PT]

  # Redirect all non-static requests to cluster
  RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f
  RewriteRule ^/(.*)$ balancer://demo_balancer%{REQUEST_URI} [P,QSA,L]
</VirtualHost>

<Proxy balancer://demo_balancer>
  BalancerMember http://localhost:3528
  BalancerMember http://localhost:3529
</Proxy>

May 21 07:46:25 web001 httpd2-prefork[12751]: [error] [client x.x.x.x] proxy:
error reading status line from remote server localhost, referer: 
https://x.x.x.x/
May 21 07:46:25 web001 httpd2-prefork[12751]: [error] [client x.x.x.x] proxy:
Error reading from remote server returned by /, referer: https://x.x.x.x/

Using the SetEnv solution in the virtual host did not work.
Paul

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to