easy_domain: fix argument
[hcoop/domtool2.git] / lib / apache_alias.dtl
CommitLineData
d5754b53
AC
1{{Basic Apache URL handling}}
2
998ed174 3extern val alias : location -> readable_path -> [Vhost];
d5754b53
AC
4{{All requests for the location should be served from the path.}}
5
6extern val scriptAlias : location -> your_path -> [Vhost];
7{{Like <tt>alias</tt>, for Apache's <tt>ScriptAlias</tt>}}
8
8c1de2ae
CE
9extern val fastScriptAlias : location -> your_path -> [Vhost];
10{{Like <tt>scriptAlias</tt>, but instead sets the location to be
11served by a single-threaded fastcgi program. Apache will manage
12processes so the script must be able to cope with several instances
13running.}}
14
d5754b53
AC
15extern val errorDocument : no_spaces -> no_newlines -> [^Vhost];
16{{The first argument specifies an HTTP error code, which should be handled using
17 the second argument, which is either a URL or a string to display.}}