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

7 lines
116 B
Ruby

app = Proc.new do |env|
file = File.open('file', 'r')
['200', {'Content-Length' => '5'}, file]
end
run app