From 72f9093da7f0de47bc55e49ab184779d671a642b Mon Sep 17 00:00:00 2001 From: Romain d'Alverny Date: Wed, 5 Jun 2013 12:15:46 +0000 Subject: explicit config file --- html/conf.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'html') diff --git a/html/conf.php b/html/conf.php index 34a0f88..80871dd 100644 --- a/html/conf.php +++ b/html/conf.php @@ -2,9 +2,23 @@ /** */ +/** Host running/serving the global nav. */ $nav_host = $_SERVER['HTTP_HOST']; + +/** Host running main Web site www.m.o. */ $www_host = 'www.mageia.org'; +/** Where precomputed nav templates are cached. */ +$cache_path = 'var/tmp/cache'; + +// erk +if ($nav_host == 'www.mageia.org') { + $cache_path = '../var/tmp/cache'; +} + +/** You may overload this config by defining APP_MODE env + * variable, and using the switch construct below. +*/ $mode = isset($_SERVER['APP_MODE']) ? $_SERVER['APP_MODE'] : null; switch ($mode) { -- cgit v1.2.1