diff --git a/app/http.php b/app/http.php index b3d7dcaac7..74fb950825 100644 --- a/app/http.php +++ b/app/http.php @@ -20,7 +20,7 @@ ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); -$http = new Server("0.0.0.0", 80); +$http = new Server("0.0.0.0", App::getEnv('PORT', 80)); $payloadSize = max(4000000 /* 4mb */, App::getEnv('_APP_STORAGE_LIMIT', 10000000 /* 10mb */));