From 270ee6c5f59ae46d917f84485041cb62a9bdfe09 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Thu, 1 Jun 2006 05:43:16 +0000 Subject: [PATCH] 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 --- docs/conf/extra/httpd-vhosts.conf.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/conf/extra/httpd-vhosts.conf.in b/docs/conf/extra/httpd-vhosts.conf.in index d3f4e3cc44..3f6918617d 100644 --- a/docs/conf/extra/httpd-vhosts.conf.in +++ b/docs/conf/extra/httpd-vhosts.conf.in @@ -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 block. # - + 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 - + 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 -- 2.40.0