Changeset 57250 in webkit


Ignore:
Timestamp:
Apr 7, 2010 11:03:29 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-07 Eric Seidel <eric@webkit.org>

Reviewed by Alexey Proskuryakov.

WebKit Apache configs only listen on IPv4 addresses, causing random timeouts
https://bugs.webkit.org/show_bug.cgi?id=37104

Apache 1.3 does not support IPv6, so remove the Listen [::1] directive
and add a warning about how that may cause flakiness on systems which
use Apache 1.3, but support IPv6.

  • http/conf/httpd.conf:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r57249 r57250  
     12010-04-07  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Alexey Proskuryakov.
     4
     5        WebKit Apache configs only listen on IPv4 addresses, causing random timeouts
     6        https://bugs.webkit.org/show_bug.cgi?id=37104
     7
     8        Apache 1.3 does not support IPv6, so remove the Listen [::1] directive
     9        and add a warning about how that may cause flakiness on systems which
     10        use Apache 1.3, but support IPv6.
     11
     12        * http/conf/httpd.conf:
     13
    1142010-04-07  Eric Seidel  <eric@webkit.org>
    215
  • trunk/LayoutTests/http/conf/httpd.conf

    r57249 r57250  
    182182Listen 127.0.0.1:8080
    183183Listen 127.0.0.1:8443
    184 # We listen to both IPv4 and IPv6 loop-back addresses, but ignore
    185 # requests to 8000 from random users on network.
     184# Apache 1.3 only supports IPv4, so we do not listen on ::1 (IPv6 loopback).
     185# This may cause flaky tests on systems which support IPv6 if localhost resolves
     186# to ::1 in addition to 127.0.0.1.
    186187# See https://bugs.webkit.org/show_bug.cgi?id=37104
    187 Listen [::1]:8000
    188 Listen [::1]:8080
    189 Listen [::1]:8443
    190188
    191189#
Note: See TracChangeset for help on using the changeset viewer.