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

10 lines
181 B
Ruby

app = Proc.new do |env|
body = env['rack.input'].gets
#body += env['rack.input'].gets
['200', {
'Content-Length' => body.length.to_s
}, [body]]
end
run app