write-ups-challenges-2020-2021/ruby_challenge/cgiup.rb
2022-11-24 18:03:20 +01:00

21 lines
443 B
Ruby
Executable File

#!/usr/bin/env ruby
require 'webrick'
unless ARGV[0]
STDERR.puts "usage: cgiup [PATH TO CGI SCRIPT]"
exit 1
end
cgi_script = File.expand_path(ARGV[0])
unless File.exists?(cgi_script)
STDERR.puts "CGI Script: #{cgi_script} Not Found"
exit 1
end
server = WEBrick::HTTPServer.new(:Port => ENV["PORT"] || 3000)
server.mount('/', WEBrick::HTTPServlet::CGIHandler, File.expand_path(ARGV[0]))
trap("INT"){ server.shutdown }
server.start