https://bz.apache.org/bugzilla/show_bug.cgi?id=69966

            Bug ID: 69966
           Summary: Proxy Timeout seem to be ignored
           Product: Apache httpd-2
           Version: 2.4.66
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: regression
          Priority: P2
         Component: mod_proxy
          Assignee: [email protected]
          Reporter: [email protected]
  Target Milestone: ---

Hello,

I recently updated my httpd instance to 2.4.66 and since then, the proxy
returns a 502 error after exactly 27 minutes (tried twice to confirm).
I use httpd in front of a Django application that requires long wait times for
specific needs. With 2.4.62 there was no problem, but since the new versions it
seems to ignore my timeout directive.
For your information, I am using the httpd Docker image
(https://hub.docker.com/_/httpd).

PS: Sorry for any mistakes, I am French and I am using a translator.

Here is an excerpt from my httpd.conf configuration:

<VirtualHost *:443>
    SSLEngine on
    SSLCertificateFile "******"
    SSLCertificateKeyFile "******"
    SSLCertificateChainFile "******"
    SSLCACertificateFile  "******"

    ProxyRequests     Off
    AllowEncodedSlashes NoDecode

    ProxyTimeout 600

    <Proxy "http://******/specifiq_url";>
        ProxySet timeout=36000
    </Proxy>

    <Location "/">
        ProxyPreserveHost On
        ProxyPass http://******/ nocanon
        ProxyPassReverse http://*******/
    </Location>

    <Location "/static">
        ProxyPass "!"
    </Location>
    Alias /static/ /var/www/static/
    <Directory /var/www/static/>
        Options Indexes FollowSymLinks

        Require all granted
    </Directory>
</VirtualHost>

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to