aboutsummaryrefslogtreecommitdiffstats
path: root/_nav/html/conf.php
diff options
context:
space:
mode:
Diffstat (limited to '_nav/html/conf.php')
-rw-r--r--_nav/html/conf.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/_nav/html/conf.php b/_nav/html/conf.php
new file mode 100644
index 000000000..80871dd9a
--- /dev/null
+++ b/_nav/html/conf.php
@@ -0,0 +1,28 @@
+<?php
+/**
+*/
+
+/** 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) {
+case 'dev':
+case 'dev-rda': $www_host = 'mageia:8888'; break;
+// add your own case if needed.
+}