summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Covener <covener@apache.org>2011-07-15 22:52:52 +0000
committerEric Covener <covener@apache.org>2011-07-15 22:52:52 +0000
commit78474bbf17d1e6bec9157393fa49ce6fd73d5003 (patch)
tree5220ef0a2a6939e44dc1d5ff5718a4f3551a34cd
parentb1b5e91608e1e2c26538cc33687230d38ab1322b (diff)
downloadhttpd-78474bbf17d1e6bec9157393fa49ce6fd73d5003.tar.gz
zap another "myserver" hostname
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1147341 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--docs/manual/mod/mod_alias.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/manual/mod/mod_alias.xml b/docs/manual/mod/mod_alias.xml
index 76d4170ea2..ed807959ee 100644
--- a/docs/manual/mod/mod_alias.xml
+++ b/docs/manual/mod/mod_alias.xml
@@ -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>