1
0
Fork 0
mirror of synced 2024-06-18 18:54:55 +12:00

Added startup delay for server

This commit is contained in:
Eldad Fux 2020-07-03 18:14:06 +03:00
parent cb454df803
commit 064a9f4c3f

View file

@ -15,6 +15,8 @@ ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
sleep(5);
$http = new Server("0.0.0.0", 80);
$http