]> granicus.if.org Git - apache/commitdiff
Fix a link as spotted by Benoit Wery in the comment system. (backport of r1818059)
authorChristophe Jaillet <jailletc36@apache.org>
Wed, 13 Dec 2017 20:36:36 +0000 (20:36 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Wed, 13 Dec 2017 20:36:36 +0000 (20:36 +0000)
Synch with trunk doc:
   - Add some quotes to improve syntax hightlight
   - Remove some trailing spaces.
   - Mention mod_macro (backport of r1436578)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1818061 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/vhosts/mass.xml

index bf5e6fad196be2ff3767c0b3851441d6469f0e0f..e481c1768fadc3d572f792f703871e194ea602bd 100644 (file)
@@ -85,7 +85,7 @@
     and arrange for the process at the other end to split up the log
     files into one per virtual host. One example of such a process can
     be found in the <a
-    href="../programs/other.html#split-logfile">split-logfile</a>
+    href="../programs/split-logfile.html">split-logfile</a>
     utility.</p>
 
 </section>
@@ -188,7 +188,7 @@ examples.</p>
 UseCanonicalName Off
 
 LogFormat "%V %h %l %u %t \"%r\" %s %b" vcommon
-CustomLog logs/access_log vcommon
+CustomLog "logs/access_log" vcommon
 
 # include part of the server name in the filenames
 VirtualDocumentRoot "/home/%2/www"
@@ -232,18 +232,18 @@ LogFormat "%V %h %l %u %t \"%r\" %s %b" vcommon
 
 &lt;VirtualHost 111.22.33.44&gt;
     ServerName www.commercial.example.com
-    
+
     CustomLog "logs/access_log.commercial" vcommon
-    
+
     VirtualDocumentRoot "/www/commercial/%0/docs"
     VirtualScriptAlias  "/www/commercial/%0/cgi-bin"
 &lt;/VirtualHost&gt;
 
 &lt;VirtualHost 111.22.33.45&gt;
     ServerName www.homepages.example.com
-    
+
     CustomLog "logs/access_log.homepages" vcommon
-    
+
     VirtualDocumentRoot "/www/homepages/%0/docs"
     ScriptAlias         "/cgi-bin/" "/www/std-cgi/"
 &lt;/VirtualHost&gt;
@@ -301,4 +301,14 @@ discussed in the <a href="../rewrite/vhosts.html">rewrite
 documentation</a>.</p>
 </section>
 
+<section id="macro"><title>Mass virtual hosts with mod_macro</title>
+
+<p>Another option for dynamically generated virtual hosts is
+<module>mod_macro</module>, with which you can create a virtualhost
+template, and invoke it for multiple hostnames. An example of this is
+provided in the <strong>Usage</strong> section of the module
+documentation.
+</p>
+</section>
+
 </manualpage>