Commit 06d6fbf4 authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  Provide vhosts examples remotely related to the httpd.conf we create?


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@410762 13f79535-47bb-0310-9956-ffa450edef68
parent d0417a54
Loading
Loading
Loading
Loading
+5 −5
Changes for docs/conf/extra/httpd-vhosts.conf.in: 5 added lines, 5 removed lines.
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@
#
# Use name-based virtual hosting.
#
NameVirtualHost *:80
NameVirtualHost *:@@Port@@

#
# VirtualHost example:
@@ -24,18 +24,18 @@ NameVirtualHost *:80
# The first VirtualHost section is used for all requests that do not
# match a ServerName or ServerAlias in any <VirtualHost> block.
#
<VirtualHost *:80>
<VirtualHost *:@@Port@@>
    ServerAdmin webmaster@dummy-host.example.com
    DocumentRoot /www/docs/dummy-host.example.com
    DocumentRoot @@ServerRoot@@/docs/dummy-host.example.com
    ServerName dummy-host.example.com
    ServerAlias www.dummy-host.example.com
    ErrorLog @rel_logfiledir@/dummy-host.example.com-error_log
    CustomLog @rel_logfiledir@/dummy-host.example.com-access_log common
</VirtualHost>

<VirtualHost *:80>
<VirtualHost *:@@Port@@>
    ServerAdmin webmaster@dummy-host2.example.com
    DocumentRoot /www/docs/dummy-host2.example.com
    DocumentRoot @@ServerRoot@@/docs/dummy-host2.example.com
    ServerName dummy-host2.example.com
    ErrorLog @rel_logfiledir@/dummy-host2.example.com-error_log
    CustomLog @rel_logfiledir@/dummy-host2.example.com-access_log common