Files
nginx-unit/test/ruby/input_gets/config.ru
2022-05-13 15:43:57 +01:00

10 lines
173 B
Ruby

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