Files
nginx-unit/test/ruby/body_each_error/config.ru
2018-03-21 18:26:40 +03:00

7 lines
104 B
Ruby

app = Proc.new do |env|
io = IO.new(0, 'r')
['200', {'Content-Length' => '0'}, io]
end
run app