class Merb::Rack::FastCGI
Public Class Methods
start(opts={})
click to toggle source
Parameters¶ ↑
- opts<Hash>
-
Options for FastCGI (see below).
Options (opts)¶ ↑
- :app<String>>
-
The application name.
:api: plugin
# File lib/merb-core/rack/adapter/fcgi.rb, line 12 def self.start(opts={}) Merb.logger.warn!("Using FastCGI adapter") Merb::Server.change_privilege ::Rack::Handler::FastCGI.run(opts[:app], opts) end