Servlet for handling CGI
scripts
Example:
server.mount('/cgi/my_script', WEBrick::HTTPServlet::CGIHandler, '/path/to/my_script')
Constants
No documentation available
No documentation available
No documentation available
Class Methods
lib/webrick/httpservlet/cgihandler.rb
View on GitHub
# File tmp/rubies/ruby-2.7.6/lib/webrick/httpservlet/cgihandler.rb, line 36
def initialize(server, name)
super(server, name)
@script_filename = name
@tempdir = server[:TempDir]
interpreter = server[:CGIInterpreter]
if interpreter.is_a?(Array)
@cgicmd = CGIRunnerArray + interpreter
else
@cgicmd = "#{CGIRunner} #{interpreter}"
end
end
Creates a new CGI
script servlet for the script at name