aboutsummaryrefslogtreecommitdiff
path: root/config.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--config.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/config.php b/config.php
new file mode 100644
index 0000000..3a13e84
--- /dev/null
+++ b/config.php
@@ -0,0 +1,13 @@
+<?php
+
+date_default_timezone_set('Europe/Berlin');
+
+/**
+ * Während der Entwicklung wird die BASEURL automatisch erraten
+ * In Produktionssituationen sollte manuell eine konfiguriert werden um Überraschungen zu vermeiden
+ *
+ * Protokollfreie URLs (welche, die mit // beginnen), werden automatisch mit dem korrekten Protokoll ergänzt.
+ * In diesem Fall wird auch ein SSL-Umschalt-Button im Header angezeigt
+ */
+if($_SERVER['HTTP_HOST'] != 'localhost')
+ $GLOBALS['CONFIG']['BASEURL'] = '//streaming.media.ccc.de/';