X-Git-Url: https://git.hcoop.net/hcoop/domtool2.git/blobdiff_plain/781c123c5d41c41784c66a9ca18b4a34a11731cf..606bb55b330153568370f64245e3c7165fe6d0fb:/configDefault/apache.cfg diff --git a/configDefault/apache.cfg b/configDefault/apache.cfg index 48d852a..83b2a28 100644 --- a/configDefault/apache.cfg +++ b/configDefault/apache.cfg @@ -15,7 +15,7 @@ val fixperms1 = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtoo val confDir = ConfigCore.localRoot ^ "/vhosts" val webNodes_all = [("navajos", {version = APACHE_2, auth = MOD_WAKLOG})] -val webNodes_admin = [("deleuze", {version = APACHE_2, auth = MOD_WAKLOG})] +val webNodes_admin = [("mccarthy", {version = APACHE_2, auth = NO_AUTH})] val proxyTargets = ["http://hcoop.net/cgi-bin/mailman", "http://hcoop.net/pipermail"] @@ -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"