X-Git-Url: https://git.hcoop.net/hcoop/domtool2.git/blobdiff_plain/1a86b2d34839ea1ba3e99dbeff414e0262d434ed..f8e7de3e6b0f0f92edb07fc87dacb4c499849e87:/lib/web_apps.dtl diff --git a/lib/web_apps.dtl b/lib/web_apps.dtl index 0ae5222..124a6d0 100644 --- a/lib/web_apps.dtl +++ b/lib/web_apps.dtl @@ -3,35 +3,58 @@ val addWordPress = \ loc : (location) -> location loc with phpVersion php5; + rewriteRule "^(.*/)?\.svn/" "-" [forbidden, last]; + rewriteRule "^(.*/)?\.git/" "-" [forbidden, last]; + rewriteCond "%{REQUEST_FILENAME}" "!-f" []; rewriteCond "%{REQUEST_FILENAME}" "!-d" []; - rewriteRule "." "/index.php" [last] + + rewriteRule "." "/index.php" [last]; end; {{Add a standard WordPress blog set-up code to a virtual host. The WordPress files should be rooted at the location you specify.}} -val wordPress = \ host : (host) -> +val wordPress = \ host : (host) -> \\ config : Vhost -> web host with - addWordPress "/" + addWordPress "/"; + diskCache "/wp-content"; + config end; {{Create a WordPress blog with just the standard set-up code. The WordPress blog should be rooted at the vhost's DocumentRoot.}} +val moin_default_htdocs : (location) = "/moin_static198"; +{{Alias for static content used by the system-wide MoinMoin.}} + val addMoinMoin = begin htdocs <- Htdocs; prefix <- Prefix; script <- Script; - alias htdocs "/usr/share/moin/htdocs"; - scriptAlias prefix (end_in_slash script) + alias htdocs "/afs/hcoop.net/common/app/moin/installed/moin19/lib/python2.6/site-packages/MoinMoin/web/static/htdocs"; + diskCache htdocs; + scriptAlias prefix (end_in_slash script); end; {{Add a MoinMoin wiki to a vhost.}} -val moinMoin = \ host : (host) -> +val moinMoin = \ host : (host) -> \\ config : Vhost -> web host with addMoinMoin where - Htdocs = "/moin"; + Htdocs = moin_default_htdocs; Prefix = "/" - end + end; + config end; {{Create a new vhost with just a MoinMoin wiki.}} + +(* Legacy version of moin macros *) + +val addMoinMoinOld = begin + htdocs <- Htdocs; + prefix <- Prefix; + script <- Script; + + alias htdocs "/usr/share/moin/htdocs"; + scriptAlias prefix (end_in_slash script) +end; +{{Add a MoinMoin wiki to a vhost.}} \ No newline at end of file