Changeset 57260 in webkit


Ignore:
Timestamp:
Apr 8, 2010 12:54:48 AM (14 years ago)
Author:
eric@webkit.org
Message:

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

Reviewed by Adam Barth.

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

Turns out the CYGWIN also uses Apache 1.3, so can't bind to ::1 either.

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

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r57259 r57260  
     12010-04-07  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     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        Turns out the CYGWIN also uses Apache 1.3, so can't bind to ::1 either.
     9
     10        * http/conf/cygwin-httpd.conf:
     11
    1122010-04-08  Andrew Scherkus  <scherkus@chromium.org>
    213
  • trunk/LayoutTests/http/conf/cygwin-httpd.conf

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