You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2018/03/02 19:02:50 UTC

svn commit: r1825741 - /httpd/httpd/trunk/docs/manual/mod/core.xml

Author: covener
Date: Fri Mar  2 19:02:50 2018
New Revision: 1825741

URL: http://svn.apache.org/viewvc?rev=1825741&view=rev
Log:
reverse the order so the default is listed first.

Modified:
    httpd/httpd/trunk/docs/manual/mod/core.xml

Modified: httpd/httpd/trunk/docs/manual/mod/core.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/core.xml?rev=1825741&r1=1825740&r2=1825741&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/core.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/core.xml Fri Mar  2 19:02:50 2018
@@ -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>