aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/doc/src/httpd.xml
diff options
context:
space:
mode:
authorMicael Karlberg <[email protected]>2011-04-08 17:51:55 +0200
committerMicael Karlberg <[email protected]>2011-04-08 17:51:55 +0200
commit24a9408229d14b3b0c41265f0c9f4c6d164e92ed (patch)
tree89bd26baac9532bcf9923da39018a36a4d4bca15 /lib/inets/doc/src/httpd.xml
parent332b91c46d67dc31ca6080b2ba5c03636f3d584f (diff)
parent5ad09d2928fd4584ce6dc50f44825b3f6d7ef66a (diff)
downloadotp-24a9408229d14b3b0c41265f0c9f4c6d164e92ed.tar.gz
otp-24a9408229d14b3b0c41265f0c9f4c6d164e92ed.tar.bz2
otp-24a9408229d14b3b0c41265f0c9f4c6d164e92ed.zip
Merge branch 'dev' into bmk/snmp/manager/request_override_options
Diffstat (limited to 'lib/inets/doc/src/httpd.xml')
-rw-r--r--lib/inets/doc/src/httpd.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/inets/doc/src/httpd.xml b/lib/inets/doc/src/httpd.xml
index 62f4e18f82..6470b6fac7 100644
--- a/lib/inets/doc/src/httpd.xml
+++ b/lib/inets/doc/src/httpd.xml
@@ -525,12 +525,13 @@ bytes
scheme scripts. A matching URL is mapped into a specific module
and function. For example:
- <code>{erl_script_alias, {"/cgi-bin/example" [httpd_example]}
+ <code>{erl_script_alias, {"/cgi-bin/example", [httpd_example]}
</code>
and a request to
http://your.server.org/cgi-bin/example/httpd_example:yahoo
- would refer to httpd_example:yahoo/2 and
+ would refer to httpd_example:yahoo/3 or, if that did not exist,
+ httpd_example:yahoo/2 and
http://your.server.org/cgi-bin/example/other:yahoo would
not be allowed to execute.
</item>