Sha256: ebd2cb7722c98a08ed34e21ea5907199a2cc001256923939f3cd9975495b218d
Contents?: true
Size: 440 Bytes
Versions: 25
Compression:
Stored size: 440 Bytes
Contents
module Merb module Rack class FastCGI # ==== Parameters # opts<Hash>:: Options for FastCGI (see below). # # ==== Options (opts) # :app<String>>:: The application name. # # :api: plugin def self.start(opts={}) Merb.logger.warn!("Using FastCGI adapter") Merb::Server.change_privilege ::Rack::Handler::FastCGI.run(opts[:app], opts) end end end end
Version data entries
25 entries across 25 versions & 1 rubygems