# DISK. The PID of the main server process is automatically appended to
# the filename.
#
-#LockFile "/private/var/run/httpd.lock"
+LockFile "/tmp/WebKit/httpd.lock"
#
# PidFile: The file in which the server should record its process
# directive.
#
# Configured from the httpd command line for WebKit layout tests.
+# Port 8443 is hard-coded as it is needed for the HTTPS configuration later on.
#
#Listen 3000
-#Listen 127.0.0.1:8000
+Listen 127.0.0.1:8080
+Listen 127.0.0.1:8443
#
# Dynamic Shared Object (DSO) Support
#LoadModule unique_id_module libexec/httpd/mod_unique_id.so
#LoadModule setenvif_module libexec/httpd/mod_setenvif.so
#LoadModule dav_module libexec/httpd/libdav.so
-#LoadModule ssl_module libexec/httpd/libssl.so
+LoadModule ssl_module libexec/httpd/libssl.so
#LoadModule perl_module libexec/httpd/libperl.so
LoadModule php4_module libexec/httpd/libphp4.so
LoadModule hfs_apple_module libexec/httpd/mod_hfs_apple.so
AddModule mod_so.c
#AddModule mod_setenvif.c
#AddModule mod_dav.c
-#AddModule mod_ssl.c
+AddModule mod_ssl.c
#AddModule mod_perl.c
AddModule mod_php4.c
AddModule mod_hfs_apple.c
RewriteCond %{REQUEST_METHOD} ^TRACE
RewriteRule .* - [F]
</IfModule>
+
+<VirtualHost 127.0.0.1:8443>
+ ServerName 127.0.0.1
+ SSLEngine On
+</VirtualHost>