diff options
author | MaZderMind | 2015-12-23 13:40:56 +0100 |
---|---|---|
committer | MaZderMind | 2015-12-23 13:40:56 +0100 |
commit | 2b671e30dadf312410be18f9eebe631bebc5846f (patch) | |
tree | 049504baf326ee806b55cb6eb74675d37fe6d709 /config.php | |
parent | 7177a3fa0e7eba18289e8b038343f1641a873d5d (diff) |
use HOST_NAME
Diffstat (limited to '')
-rw-r--r-- | config.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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/'; |