# File mod_docs/cgi.rb, line 21
  def initialize(base_dir, run_cmd=nil, nph=false)
    @base_dir = File.expand_path(base_dir)
    @run_cmd = run_cmd
    @nph = nph
    @env = Hash.new
    @pass_args = false
    @pass_auth = false
    @local_path_check = Regexp.compile('^' + Regexp.quote(@base_dir))
  end