Add mccarthy as admin web server and mail node
[hcoop/domtool2.git] / lib / web_apps.dtl
... / ...
CommitLineData
1{{Configuring common web applications}}
2
3val 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
17val 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
26val moin_default_htdocs : (location) = "/moin_static198";
27{{Alias for static content used by the system-wide MoinMoin.}}
28
29val 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);
37end;
38{{Add a MoinMoin wiki to a vhost.}}
39
40val 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
52val 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)
59end;
60{{Add a MoinMoin wiki to a vhost.}}