Release
[hcoop/domtool2.git] / configDefault / apache.cfg
1 structure Apache :> APACHE_CONFIG = struct
2
3 open ConfigTypes
4
5 val reload = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache"
6 val down = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache-down"
7 val undown = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache-undown"
8 val fixperms = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache-fixperms"
9
10 val reload1 = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache1.3"
11 val down1 = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache1.3-down"
12 val undown1 = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache1.3-undown"
13 val fixperms1 = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache1.3-fixperms"
14
15 val confDir = ConfigCore.localRoot ^ "/vhosts"
16
17 val webNodes_all = [("navajos", {version = APACHE_2, auth = MOD_WAKLOG})]
18 val webNodes_admin = [("deleuze", {version = APACHE_2, auth = MOD_WAKLOG})]
19
20 val proxyTargets = ["http://hcoop.net/cgi-bin/mailman",
21 "http://hcoop.net/pipermail"]
22
23 val proxyHosts = ["bog"]
24
25 val public_html = "public_html"
26
27 fun logDirOf version1 user =
28 if size user < 2 then
29 "/bad_username"
30 else
31 String.concat [if version1 then
32 "/var/log/apache/user/"
33 else
34 "/var/log/apache2/user/",
35 String.substring (user, 0, 1),
36 "/",
37 String.substring (user, 0, 2),
38 "/",
39 user,
40 "/apache/log"]
41
42 (* FIXME: hcoop.net reference *)
43 fun realLogDirOf user =
44 if size user < 2 then
45 "/bad_username"
46 else
47 String.concat ["/afs/hcoop.net/user/",
48 String.substring (user, 0, 1),
49 "/",
50 String.substring (user, 0, 2),
51 "/",
52 user,
53 "/.logs/apache"]
54
55 fun backupLogDirOf version1 =
56 if version1 then
57 ConfigCore.sharedRoot ^ "/backup/apache/"
58 else
59 ConfigCore.sharedRoot ^ "/backup/apache2/"
60
61 val defaultPhpVersion = 5
62
63 val waklogUserFile = ConfigCore.localRoot ^ "/waklog.conf"
64
65 end