hcoop: move dispatcher to gibran
[hcoop/domtool2.git] / lib / apache_alias.dtl
... / ...
CommitLineData
1{{Basic Apache URL handling}}
2
3extern val alias : location -> readable_path -> [Vhost];
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
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
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.}}