debian-mirror-gitlab/spec/rack_servers/configs/config.ru

13 lines
222 B
Text
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
app = proc do |env|
if env['REQUEST_METHOD'] == 'GET'
[200, {}, ["#{Process.pid}"]]
else
Process.kill(env['QUERY_STRING'], Process.pid)
[200, {}, ['Bye!']]
end
end
run app