apache: fastcgi config core, implement php5-cgi fastcgi
[hcoop/domtool2.git] / configDefault / apache.cfg
index 0636c4f..83b2a28 100644 (file)
@@ -58,6 +58,24 @@ fun backupLogDirOf version1 =
     else
        ConfigCore.sharedRoot ^ "/backup/apache2/"
 
+fun fastCgiWrapperOf user =
+      if size user < 2 then
+       "/bad_username"
+    else
+       String.concat [ConfigCore.sharedRoot,
+                      "/httpd/fastcgi/",
+                      String.substring (user, 0, 1),
+                      "/",
+                      String.substring (user, 0, 2),
+                      "/",
+                      user,
+                      "/",
+                      user,
+                      "-wrapper-wrapper"]
+
+(* FIXME: hcoop reference *)
+val phpFastCgiWrapper = "/afs/hcoop.net/common/bin/php5-fcgi-wrapper"
+
 val defaultPhpVersion = 5
 
 val waklogUserFile = ConfigCore.localRoot ^ "/waklog.conf"