Commit 6a67d87b authored by Eric Covener's avatar Eric Covener
Browse files

zap another "myserver" hostname



git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1147341 13f79535-47bb-0310-9956-ffa450edef68
parent f44d1012
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -114,10 +114,10 @@ href="../urlmapping.html">Mapping URLs to the filesystem</a></seealso>
      Alias /image /ftp/pub/image
    </example>

    <p>A request for <code>http://myserver/image/foo.gif</code> would cause
    <p>A request for <code>http://example.com/image/foo.gif</code> would cause
    the server to return the file <code>/ftp/pub/image/foo.gif</code>.  Only
    complete path segments are matched, so the above alias would not match a
    request for <code>http://myserver/imagefoo.gif</code>.  For more complex
    request for <code>http://example.com/imagefoo.gif</code>.  For more complex
    matching using regular expressions, see the <directive module="mod_alias"
    >AliasMatch</directive> directive.</p>

@@ -436,7 +436,7 @@ target as a CGI script</description>
      ScriptAlias /cgi-bin/ /web/cgi-bin/
    </example>

    <p>A request for <code>http://myserver/cgi-bin/foo</code> would cause the
    <p>A request for <code>http://example.com/cgi-bin/foo</code> would cause the
    server to run the script <code>/web/cgi-bin/foo</code>.  This configuration
    is essentially equivalent to:</p>
    <example>