Commit 56f34fb9 authored by Luca Toscano's avatar Luca Toscano
Browse files

Correct some typos across the documentation.

This commit was made thanks to the tool and PR
created by Lajos Veres (vlajos) on github.

PR: https://github.com/apache/httpd/pull/6
Tool: https://github.com/vlajos/misspell_fixer



git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1780218 13f79535-47bb-0310-9956-ffa450edef68
parent 5654bcc2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -371,7 +371,7 @@
      See: <a href="ssl/">SSL/TLS Encryption</a>
    </dd>

    <dt><a name="regularexpresion" id="regularexpresion">Regular Expression</a>
    <dt><a name="regularexpression" id="regularexpression">Regular Expression</a>
      <a name="regex" id="regex">(Regex)</a></dt>
    <dd>A way of describing a pattern in text - for example, "all the words that
      begin with the letter A" or "every 10-digit phone number" or even "Every
+1 −1
Original line number Diff line number Diff line
@@ -961,7 +961,7 @@ the contents of file-system directories matching a regular expression.</descript
    <p>matches directories in <code>/www/</code> (or any subdirectory thereof)
    that consist of three numbers.</p>

   <note><title>Compatability</title>
   <note><title>Compatibility</title>
      Prior to 2.3.9, this directive implicitly applied to sub-directories
      (like <directive module="core" type="section">Directory</directive>) and
      could not match the end of line symbol ($).  In 2.3.9 and later,
+1 −1
Original line number Diff line number Diff line
@@ -938,7 +938,7 @@ AuthLDAPInitialBindPattern (.+) cn=$1,dc=example,dc=com

<directivesynopsis>
<name>AuthLDAPBindPassword</name>
<description>Password used in conjuction with the bind DN</description>
<description>Password used in conjunction with the bind DN</description>
<syntax>AuthLDAPBindPassword <em>password</em></syntax>
<contextlist><context>directory</context><context>.htaccess</context>
</contextlist>
+4 −4
Original line number Diff line number Diff line
@@ -470,7 +470,7 @@ CacheEnable disk "http://.example.org/"

<usage>
    <p>The <directive>CacheMaxExpire</directive> directive specifies the maximum number of
    seconds for which cachable HTTP documents will be retained without checking the origin
    seconds for which cacheable HTTP documents will be retained without checking the origin
    server. Thus, documents will be out of date at most this number of seconds. This maximum
    value is enforced even if an expiry date was supplied with the document.</p>

@@ -493,7 +493,7 @@ CacheEnable disk "http://.example.org/"

<usage>
    <p>The <directive>CacheMinExpire</directive> directive specifies the minimum number of
    seconds for which cachable HTTP documents will be retained without checking the origin
    seconds for which cacheable HTTP documents will be retained without checking the origin
    server. This is only used if no valid expire time was supplied with the document.</p>


@@ -724,10 +724,10 @@ LastModified date.</description>
      <li><code>/someapplication/image.gif;jsessionid=123456789</code></li>
      <li><code>/someapplication/image.gif?PHPSESSIONID=12345678</code></li>
    </ul>
    <p>This causes cachable resources to be stored separately for each session, which
    <p>This causes cacheable resources to be stored separately for each session, which
    is often not desired. <directive>CacheIgnoreURLSessionIdentifiers</directive> lets
    define a list of identifiers that are removed from the key that is used to identify
    an entity in the cache, such that cachable resources are not stored separately for
    an entity in the cache, such that cacheable resources are not stored separately for
    each session.
    </p>
    <p><code>CacheIgnoreURLSessionIdentifiers None</code> clears the list of ignored
+1 −1
Original line number Diff line number Diff line
@@ -340,7 +340,7 @@ LDAPTrustedGlobalCert KEY_BASE64 "/certs/key1.pem" [password]
        <p>Both CA and client certificates may be specified globally
        (LDAPTrustedGlobalCert) or per-connection (LDAPTrustedClientCert).
        When any settings are specified per-connection, the global
        settings are superceded.</p>
        settings are superseded.</p>

        <p>The documentation for the SDK claims to support both SSL and
        STARTTLS, however STARTTLS does not seem to work on all versions
Loading