diff options
-rw-r--r-- | html/conf.php | 14 |
1 files changed, 14 insertions, 0 deletions
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) { |