Update proxy.dtl with new proxy_reverse_target type
[hcoop/domtool2.git] / lib / web_apps.dtl
1 {{Configuring common web applications}}
2
3 val addWordPress = \ loc : (location) ->
4 location loc with
5 phpVersion php5;
6 rewriteRule "^(.*/)?\.svn/" "-" [forbidden, last];
7 rewriteRule "^(.*/)?\.git/" "-" [forbidden, last];
8
9 rewriteCond "%{REQUEST_FILENAME}" "!-f" [];
10 rewriteCond "%{REQUEST_FILENAME}" "!-d" [];
11
12 rewriteRule "." "/index.php" [last];
13 end;
14 {{Add a standard WordPress blog set-up code to a virtual host. The WordPress
15 files should be rooted at the location you specify.}}
16
17 val wordPress = \ host : (host) -> \\ config : Vhost ->
18 web host with
19 addWordPress "/";
20 diskCache "/wp-content";
21 config
22 end;
23 {{Create a WordPress blog with just the standard set-up code. The WordPress blog should
24 be rooted at the vhost's <tt>DocumentRoot</tt>.}}
25
26 val moin_default_htdocs : (location) = "/moin_static198";
27 {{Alias for static content used by the system-wide MoinMoin.}}
28
29 val addMoinMoin = begin
30 htdocs <- Htdocs;
31 prefix <- Prefix;
32 script <- Script;
33
34 alias htdocs "/afs/hcoop.net/common/app/moin/installed/moin19/lib/python2.6/site-packages/MoinMoin/web/static/htdocs";
35 diskCache htdocs;
36 scriptAlias prefix (end_in_slash script);
37 end;
38 {{Add a MoinMoin wiki to a vhost.}}
39
40 val moinMoin = \ host : (host) -> \\ config : Vhost ->
41 web host with
42 addMoinMoin where
43 Htdocs = moin_default_htdocs;
44 Prefix = "/"
45 end;
46 config
47 end;
48 {{Create a new vhost with just a MoinMoin wiki.}}
49
50 (* Legacy version of moin macros *)
51
52 val addMoinMoinOld = begin
53 htdocs <- Htdocs;
54 prefix <- Prefix;
55 script <- Script;
56
57 alias htdocs "/usr/share/moin/htdocs";
58 scriptAlias prefix (end_in_slash script)
59 end;
60 {{Add a MoinMoin wiki to a vhost.}}