Fix config.php for docker

When running through docker with the command from the readme, the server
name is "0.0.0.0" instead of "localhost".
This commit is contained in:
Jannik Beyerstedt 2023-06-01 19:41:43 +02:00
parent 4d29d6c4a5
commit 25081b0e77

View file

@ -24,7 +24,7 @@ $GLOBALS['CONFIG']['PREVIEW_DOMAIN'] = 'xlocalhost';
* 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['SERVER_NAME'] == 'localhost')
if(@$_SERVER['SERVER_NAME'] == 'localhost' || @$_SERVER['SERVER_NAME'] == '0.0.0.0')
{
// keine Konfiguration -> BASEURL wird automatisch erraten
}