set([ 'enable_static_handler' => true, 'http_autoindex' => true, 'document_root' => realpath(__DIR__.'/../www/'), ]); $http->on('request', function ($req, $resp) { $resp->end("hello world\n"); }); $http->start();