apache: remove php5-cgi support, always generate php config
[hcoop/domtool2.git] / configDefault / apache.cfg
... / ...
CommitLineData
1structure Apache :> APACHE_CONFIG = struct
2
3open ConfigTypes
4
5val reload = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache"
6val down = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache-down"
7val undown = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache-undown"
8val fixperms = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache-fixperms"
9
10val reload1 = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache1.3"
11val down1 = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache1.3-down"
12val undown1 = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache1.3-undown"
13val fixperms1 = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache1.3-fixperms"
14
15val confDir = ConfigCore.localRoot ^ "/vhosts"
16
17val webNodes_all = [("navajos", {version = APACHE_2, auth = MOD_WAKLOG}),
18 ("shelob", {version = APACHE_2, auth = MOD_WAKLOG})]
19val webNodes_admin = [("mccarthy", {version = APACHE_2, auth = NO_AUTH}),
20 ("minsky", {version = APACHE_2, auth = MOD_WAKLOG})]
21
22val proxyTargets = ["http://hcoop.net/cgi-bin/mailman",
23 "http://hcoop.net/pipermail"]
24
25val proxyHosts = ["bog", "marsh"]
26
27val public_html = "public_html"
28
29fun logDirOf version1 user =
30 if size user < 2 then
31 "/bad_username"
32 else
33 String.concat [if version1 then
34 "/var/log/apache/user/"
35 else
36 "/var/log/apache2/user/",
37 String.substring (user, 0, 1),
38 "/",
39 String.substring (user, 0, 2),
40 "/",
41 user,
42 "/apache/log"]
43
44(* FIXME: hcoop.net reference *)
45fun realLogDirOf user =
46 if size user < 2 then
47 "/bad_username"
48 else
49 String.concat ["/afs/hcoop.net/user/",
50 String.substring (user, 0, 1),
51 "/",
52 String.substring (user, 0, 2),
53 "/",
54 user,
55 "/.logs/apache"]
56
57fun backupLogDirOf version1 =
58 if version1 then
59 ConfigCore.sharedRoot ^ "/backup/apache/"
60 else
61 ConfigCore.sharedRoot ^ "/backup/apache2/"
62
63fun fastCgiWrapperOf user =
64 if size user < 2 then
65 "/bad_username"
66 else
67 String.concat [ConfigCore.sharedRoot,
68 "/httpd/fastcgi/",
69 String.substring (user, 0, 1),
70 "/",
71 String.substring (user, 0, 2),
72 "/",
73 user,
74 "/",
75 user,
76 "-wrapper-wrapper"]
77
78(* FIXME: hcoop reference *)
79val phpFastCgiWrapper = "/afs/hcoop.net/common/bin/php5-fcgi-wrapper"
80
81val waklogUserFile = ConfigCore.localRoot ^ "/waklog.conf"
82
83end