aboutsummaryrefslogtreecommitdiff
path: root/config.php
diff options
context:
space:
mode:
authorMaZderMind2015-12-23 13:40:56 +0100
committerMaZderMind2015-12-23 13:40:56 +0100
commit2b671e30dadf312410be18f9eebe631bebc5846f (patch)
tree049504baf326ee806b55cb6eb74675d37fe6d709 /config.php
parent7177a3fa0e7eba18289e8b038343f1641a873d5d (diff)
use HOST_NAME
Diffstat (limited to 'config.php')
-rw-r--r--config.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.php b/config.php
index c44c040..b2a5350 100644
--- a/config.php
+++ b/config.php
@@ -23,11 +23,11 @@ $GLOBALS['CONFIG']['PREVIEW_DOMAIN'] = 'pre.stream.c3voc.de';
* 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')
+if($_SERVER['SERVER_NAME'] == 'localhost')
{
// keine Konfiguration -> BASEURL wird automatisch erraten
}
-// if($_SERVER['HTTP_HOST'] == 'pre.stream.c3voc.de')
+// if($_SERVER['SERVER_NAME'] == 'pre.stream.c3voc.de')
// {
// // Preview-Domain
// $GLOBALS['CONFIG']['BASEURL'] = '//pre.stream.c3voc.de/';