switch to a 60 bit hash
[httpd-crcsyncproxy.git] / docs / conf / extra / httpd-vhosts.conf.in
blob724aaebd63caff0145d973abdad07a661a4b286b
2 # Virtual Hosts
4 # If you want to maintain multiple domains/hostnames on your
5 # machine you can setup VirtualHost containers for them. Most configurations
6 # use only name-based virtual hosts so the server doesn't need to worry about
7 # IP addresses. This is indicated by the asterisks in the directives below.
9 # Please see the documentation at 
10 # <URL:http://httpd.apache.org/docs/trunk/vhosts/>
11 # for further details before you try to setup virtual hosts.
13 # You may use the command line option '-S' to verify your virtual host
14 # configuration.
17 # Use name-based virtual hosting.
19 NameVirtualHost *:@@Port@@
22 # VirtualHost example:
23 # Almost any Apache directive may go into a VirtualHost container.
24 # The first VirtualHost section is used for all requests that do not
25 # match a ServerName or ServerAlias in any <VirtualHost> block.
27 <VirtualHost *:@@Port@@>
28     ServerAdmin webmaster@dummy-host.example.com
29     DocumentRoot "@@ServerRoot@@/docs/dummy-host.example.com"
30     ServerName dummy-host.example.com
31     ServerAlias www.dummy-host.example.com
32     ErrorLog "@rel_logfiledir@/dummy-host.example.com-error_log"
33     CustomLog "@rel_logfiledir@/dummy-host.example.com-access_log" common
34 </VirtualHost>
36 <VirtualHost *:@@Port@@>
37     ServerAdmin webmaster@dummy-host2.example.com
38     DocumentRoot "@@ServerRoot@@/docs/dummy-host2.example.com"
39     ServerName dummy-host2.example.com
40     ErrorLog "@rel_logfiledir@/dummy-host2.example.com-error_log"
41     CustomLog "@rel_logfiledir@/dummy-host2.example.com-access_log" common
42 </VirtualHost>