X-Git-Url: https://git.hcoop.net/hcoop/domtool2.git/blobdiff_plain/fec6c9c4b9c4cccad963d6c918a83bb522fca969..95798203fe321c2f64d2e4abc64a64dcc3aa3e9e:/configDefault/apache.cfg diff --git a/configDefault/apache.cfg b/configDefault/apache.cfg index c97a2ad..a65b7d8 100644 --- a/configDefault/apache.cfg +++ b/configDefault/apache.cfg @@ -2,30 +2,27 @@ structure Apache :> APACHE_CONFIG = struct open ConfigTypes -val reload = "/usr/bin/sudo /usr/local/sbin/domtool-publish apache" -val down = "/usr/bin/sudo /usr/local/sbin/domtool-publish apache-down" -val undown = "/usr/bin/sudo /usr/local/sbin/domtool-publish apache-undown" -val fixperms = "/usr/bin/sudo /usr/local/sbin/domtool-publish apache-fixperms" +val reload = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache" +val down = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache-down" +val undown = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache-undown" +val fixperms = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache-fixperms" -val reload1 = "/usr/bin/sudo /usr/local/sbin/domtool-publish apache1.3" -val down1 = "/usr/bin/sudo /usr/local/sbin/domtool-publish apache1.3-down" -val undown1 = "/usr/bin/sudo /usr/local/sbin/domtool-publish apache1.3-undown" -val fixperms1 = "/usr/bin/sudo /usr/local/sbin/domtool-publish apache1.3-fixperms" +val reload1 = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache1.3" +val down1 = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache1.3-down" +val undown1 = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache1.3-undown" +val fixperms1 = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-publish apache1.3-fixperms" -val confDir = "/var/domtool/vhosts" +val confDir = ConfigCore.localRoot ^ "/vhosts" -val webNodes_all = [("mire", {version = APACHE_2, auth = MOD_WAKLOG}), - ("navajos", {version = APACHE_2, auth = MOD_WAKLOG})] -val webNodes_admin = [("deleuze", {version = APACHE_2, auth = MOD_WAKLOG})] - -val webNodes_default = ["mire"] +val webNodes_all = [("navajos", {version = APACHE_2, auth = MOD_WAKLOG}), + ("shelob", {version = APACHE_2, auth = MOD_WAKLOG})] +val webNodes_admin = [("mccarthy", {version = APACHE_2, auth = NO_AUTH}), + ("minsky", {version = APACHE_2, auth = MOD_WAKLOG})] val proxyTargets = ["http://hcoop.net/cgi-bin/mailman", "http://hcoop.net/pipermail"] -val proxyHosts = ["localhost", (* deprecated! *) - "mire", - "bog"] +val proxyHosts = ["bog", "marsh"] val public_html = "public_html" @@ -44,6 +41,7 @@ fun logDirOf version1 user = user, "/apache/log"] +(* FIXME: hcoop.net reference *) fun realLogDirOf user = if size user < 2 then "/bad_username" @@ -58,12 +56,28 @@ fun realLogDirOf user = fun backupLogDirOf version1 = if version1 then - "/afs/hcoop.net/common/etc/domtool/backup/apache/" + ConfigCore.sharedRoot ^ "/backup/apache/" + else + ConfigCore.sharedRoot ^ "/backup/apache2/" + +fun fastCgiWrapperOf user = + if size user < 2 then + "/bad_username" else - "/afs/hcoop.net/common/etc/domtool/backup/apache2/" + String.concat [ConfigCore.sharedRoot, + "/httpd/fastcgi/", + String.substring (user, 0, 1), + "/", + String.substring (user, 0, 2), + "/", + user, + "/", + user, + "-wrapper-wrapper"] -val defaultPhpVersion = 4 +(* FIXME: hcoop reference *) +val phpFastCgiWrapper = "/afs/hcoop.net/common/bin/php5-fcgi-wrapper" -val waklogUserFile = "/var/domtool/waklog.conf" +val waklogUserFile = ConfigCore.localRoot ^ "/waklog.conf" end