Skip to content

Commit 9868b65

Browse files
committed
Reviewed by David Kilzer.
https://bugs.webkit.org/show_bug.cgi?id=38278 https://localhost:8443 doesn't work in WebKit tests We only had a VirtualHost for 127.0.0.1:8443. Changed that to *:8443. * http/conf/apache2-debian-httpd.conf: * http/conf/apache2-httpd.conf: * http/conf/fedora-httpd.conf: * http/conf/httpd.conf: Canonical link: https://commits.webkit.org/49693@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@58424 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 5187570 commit 9868b65

5 files changed

Lines changed: 18 additions & 4 deletions

File tree

LayoutTests/ChangeLog

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
2010-04-28 Alexey Proskuryakov <ap@apple.com>
2+
3+
Reviewed by David Kilzer.
4+
5+
https://bugs.webkit.org/show_bug.cgi?id=38278
6+
https://localhost:8443 doesn't work in WebKit tests
7+
8+
We only had a VirtualHost for 127.0.0.1:8443. Changed that to *:8443.
9+
10+
* http/conf/apache2-debian-httpd.conf:
11+
* http/conf/apache2-httpd.conf:
12+
* http/conf/fedora-httpd.conf:
13+
* http/conf/httpd.conf:
14+
115
2010-04-28 Alejandro G. Castro <alex@igalia.com>
216

317
Reviewed by Xan Lopez.

LayoutTests/http/conf/apache2-debian-httpd.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ ServerSignature On
681681
RewriteRule .* - [F]
682682
</IfModule>
683683

684-
<VirtualHost 127.0.0.1:8443>
684+
<VirtualHost *:8443>
685685
ServerName 127.0.0.1
686686
SSLEngine On
687687
</VirtualHost>

LayoutTests/http/conf/apache2-httpd.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ ServerSignature On
702702
RewriteRule .* - [F]
703703
</IfModule>
704704

705-
<VirtualHost 127.0.0.1:8443>
705+
<VirtualHost *:8443>
706706
ServerName 127.0.0.1
707707
SSLEngine On
708708
</VirtualHost>

LayoutTests/http/conf/fedora-httpd.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@ AddHandler send-as-is asis
882882
RewriteRule .* - [F]
883883
</IfModule>
884884

885-
<VirtualHost 127.0.0.1:8443>
885+
<VirtualHost *:8443>
886886
ServerName 127.0.0.1
887887
SSLEngine On
888888
</VirtualHost>

LayoutTests/http/conf/httpd.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ ServerSignature On
737737
RewriteRule .* - [F]
738738
</IfModule>
739739

740-
<VirtualHost 127.0.0.1:8443>
740+
<VirtualHost *:8443>
741741
ServerName 127.0.0.1
742742
SSLEngine On
743743
</VirtualHost>

0 commit comments

Comments
 (0)