summaryrefslogtreecommitdiffstats
path: root/docs/conf/extra/httpd-vhosts.conf.in
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2006-06-01 07:43:16 +0200
committerWilliam A. Rowe Jr <wrowe@apache.org>2006-06-01 07:43:16 +0200
commit270ee6c5f59ae46d917f84485041cb62a9bdfe09 (patch)
tree7112b6a8cf9f8d38c59c95f50a8af39332808397 /docs/conf/extra/httpd-vhosts.conf.in
parent That's the point, isn't it? All mpm's in one basket? (diff)
downloadapache2-270ee6c5f59ae46d917f84485041cb62a9bdfe09.tar.xz
apache2-270ee6c5f59ae46d917f84485041cb62a9bdfe09.zip
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
Diffstat (limited to '')
-rw-r--r--docs/conf/extra/httpd-vhosts.conf.in10
1 files 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 <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