]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
reverse the order so the default is listed first.
authorEric Covener <covener@apache.org>
Fri, 2 Mar 2018 19:02:50 +0000 (19:02 +0000)
committerEric Covener <covener@apache.org>
Fri, 2 Mar 2018 19:02:50 +0000 (19:02 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1825741 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/core.xml

index 09b91327d1b9560d3ebe110ff5586c660102342f..361533b10b1ebbd5a334c99afd9766c361e3e588 100644 (file)
@@ -4951,24 +4951,24 @@ port</description>
     <p>The ordering of the lookup when the physical port is used is as
     follows:</p>
      <dl>
-     <dt><code>UseCanonicalName On</code></dt>
+     <dt><code>UseCanonicalName Off | DNS</code></dt>
      <dd>
      <ol>
-      <li>Port provided in <directive module="core">Servername</directive></li>
+      <li>Parsed port from <code>Host:</code> header</li>
       <li>Physical port (only with <directive>UseCanonicalPhysicalPort</directive> ON)</li>
+      <li>Port provided in <directive module="core">Servername</directive></li>
       <li>Default port</li>
      </ol>
      </dd>
-     <dt><code>UseCanonicalName Off | DNS</code></dt>
+     <dt><code>UseCanonicalName On</code></dt>
      <dd>
      <ol>
-      <li>Parsed port from <code>Host:</code> header</li>
-      <li>Physical port (only with <directive>UseCanonicalPhysicalPort</directive> ON)</li>
       <li>Port provided in <directive module="core">Servername</directive></li>
+      <li>Physical port (only with <directive>UseCanonicalPhysicalPort</directive> ON)</li>
       <li>Default port</li>
      </ol>
      </dd>
-     </dl>
+    </dl>
 
     <p>With <code>UseCanonicalPhysicalPort Off</code>, the
     physical ports are removed from the ordering.</p>