diff options
author | MaZderMind | 2015-02-26 09:11:07 +0100 |
---|---|---|
committer | MaZderMind | 2015-02-26 09:11:07 +0100 |
commit | af10857ecd132aafbebfc93a5febbb992741e57f (patch) | |
tree | 581cabcc63dc7dbf388086ea87cd38ec2384ed79 | |
parent | 3713d507991e5bb96c52767e81ac5c9ffe5beaa3 (diff) |
Automatically set Base-URL when not on Localhost
Diffstat (limited to '')
-rw-r--r-- | config.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -5,7 +5,8 @@ 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 */ -//$GLOBALS['CONFIG']['BASEURL'] = 'http://foo.com/bar/'; +if($_SERVER['HTTP_HOST'] != 'localhost') + $GLOBALS['CONFIG']['BASEURL'] = 'http://streaming.media.ccc.de/'; |