Update proxy.dtl with new proxy_reverse_target type
[hcoop/domtool2.git] / lib / proxy.dtl
CommitLineData
e95a129e 1extern type proxy_target;
a9b9c410
CE
2{{URL prefix designating where to send proxied requests.
3 It can be any localhost URL on a port of at least 1024.
4 In addition, other allowed targets can be configured.
5 It may also be the value "!" to not proxy a path.}}
6
7extern type proxy_reverse_target;
e95a129e
AC
8{{URL prefix designating where to send proxied requests.
9 It can be any localhost URL on a port of at least 1024.
10 In addition, other allowed targets can be configured.}}
f8dfbbcc 11
e95a129e 12extern val proxyPass : no_spaces -> proxy_target -> [Vhost];
621629dc
CE
13extern val proxyPassReverse : no_spaces -> proxy_reverse_target -> [Vhost];
14{{Interface to Apache <tt>ProxyPass</tt> and <tt>ProxyPassReverse</tt>}}