1app = Proc.new do |env| 2 ['200', { 3 'Content-Length' => '0', 4 'Server-Port' => env['SERVER_PORT'] 5 }, ['']] 6end 7 8run app 9