| Index: third_party/apache-win32/conf/original/extra/httpd-vhosts.conf
|
| diff --git a/third_party/apache-win32/conf/original/extra/httpd-vhosts.conf b/third_party/apache-win32/conf/original/extra/httpd-vhosts.conf
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..907be5a5216149e254d2cb52edb436c4924703c1
|
| --- /dev/null
|
| +++ b/third_party/apache-win32/conf/original/extra/httpd-vhosts.conf
|
| @@ -0,0 +1,45 @@
|
| +#
|
| +# Virtual Hosts
|
| +#
|
| +# If you want to maintain multiple domains/hostnames on your
|
| +# machine you can setup VirtualHost containers for them. Most configurations
|
| +# use only name-based virtual hosts so the server doesn't need to worry about
|
| +# IP addresses. This is indicated by the asterisks in the directives below.
|
| +#
|
| +# Please see the documentation at
|
| +# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
|
| +# for further details before you try to setup virtual hosts.
|
| +#
|
| +# You may use the command line option '-S' to verify your virtual host
|
| +# configuration.
|
| +
|
| +#
|
| +# Use name-based virtual hosting.
|
| +#
|
| +NameVirtualHost *:80
|
| +
|
| +#
|
| +# VirtualHost example:
|
| +# Almost any Apache directive may go into a VirtualHost container.
|
| +# The first VirtualHost section is used for all requests that do not
|
| +# match a ServerName or ServerAlias in any <VirtualHost> block.
|
| +#
|
| +<VirtualHost *:80>
|
| + ServerAdmin webmaster@dummy-host.
|
| + DocumentRoot "D:/src/httpd/docs/dummy-host."
|
| + ServerName dummy-host.
|
| + ServerAlias www.dummy-host.
|
| + ErrorLog "logs/dummy-host.-error.log"
|
| + CustomLog "logs/dummy-host.-access.log" common
|
| +</VirtualHost>
|
| +
|
| +<VirtualHost *:80>
|
| + ServerAdmin webmaster@dummy-host2.
|
| + DocumentRoot "D:/src/httpd/docs/dummy-host2."
|
| + ServerName dummy-host2.
|
| + ErrorLog "logs/dummy-host2.-error.log"
|
| + CustomLog "logs/dummy-host2.-access.log" common
|
| +</VirtualHost>
|
| +
|
| +
|
| +
|
|
|