Hacked By AnonymousFox
#!/usr/bin/ruby
ENV['RACK_ROOT']=ENV['RAILS_ROOT'] if ENV['RACK_ROOT'] == nil
ENV['RACK_ENV']=ENV['RAILS_ENV'] if ENV['RACK_ENV'] == nil
$0="RACK: #{ENV['APP_NAME'] || ENV['RACK_ROOT']} (#{ENV['RACK_ENV']})"
if GC.respond_to?(:copy_on_write_friendly=)
GC.copy_on_write_friendly = true
end
Dir.chdir( ENV['RACK_ROOT'] )
app_root=ENV['RACK_ROOT']
require 'rubygems' if !defined?(::Gem)
require 'lsapi'
if File.exist?('Gemfile')
if Kernel.respond_to?(:gem, true)
gem('bundler')
end
require ('bundler/setup' || 'bundler')
end
module Rack
module Handler
class LiteSpeed
def self.run(app, options=nil)
if LSAPI.respond_to?("accept_new_connection")
while LSAPI.accept_new_connection != nil
fork do
LSAPI.postfork_child
while LSAPI.accept != nil
serve app
end
end
LSAPI.postfork_parent
end
else
while LSAPI.accept != nil
serve app
end
end
end
def self.serve(app)
env = ENV.to_hash
env.delete "HTTP_CONTENT_LENGTH"
env["SCRIPT_NAME"] = "" if env["SCRIPT_NAME"] == "/"
#rack_input = StringIO.new($stdin.read.to_s)
rack_input = $stdin
rack_input.set_encoding(Encoding::BINARY) if rack_input.respond_to?(:set_encoding)
env.update(
"rack.version" => [1,0],
"rack.input" => rack_input,
"rack.errors" => $stderr,
"rack.multithread" => false,
"rack.multiprocess" => true,
"rack.run_once" => false,
"rack.url_scheme" => ["yes", "on", "1"].include?(ENV["HTTPS"]) ? "https" : "http"
)
env["QUERY_STRING"] ||= ""
env["HTTP_VERSION"] ||= env["SERVER_PROTOCOL"]
env["REQUEST_PATH"] ||= "/"
status, headers, body = app.call(env)
begin
if body.respond_to?(:to_path) and env["RACK_NO_XSENDFILE"] != "1"
headers['X-LiteSpeed-Location'] = body.to_path
headers.delete('Content-Length') #Correct?
send_headers status, headers
else
send_headers status, headers
send_body body
end
ensure
body.close if body.respond_to? :close
end
end
def self.send_headers(status, headers)
print "Status: #{status}\r\n"
headers.each { |k, vs|
vs.split("\n").each { |v|
print "#{k}: #{v}\r\n"
}
}
print "\r\n"
STDOUT.flush
end
def self.send_body(body)
body.each { |part|
print part
STDOUT.flush
}
end
end
end
end
if Kernel.respond_to?(:gem, true)
gem('rack')
end
require 'rack'
#
options = {
:environment => (ENV['RACK_ENV'] || "development").dup,
:config => "#{app_root}/config.ru",
:detach => false,
:debugger => false
}
server = Rack::Handler::LiteSpeed
if File.exist?(options[:config])
config = options[:config]
cfgfile = File.read(config)
app = eval("Rack::Builder.new {( " + cfgfile + "\n )}.to_app", TOPLEVEL_BINDING, config)
else
require './config/environment'
inner_app = ActionController::Dispatcher.new
app = Rack::Builder.new {
use Rails::Rack::Debugger if options[:debugger]
run inner_app
}.to_app
end
if defined?(ActiveRecord::Base)
if defined?(ActiveRecord::Base.connection_pool.release_connection)
ActiveRecord::Base.connection_pool.release_connection
else
ActiveRecord::Base.clear_active_connections!
end
end
begin
server.run(app, options.merge(:AccessLog => []))
ensure
puts 'Exiting'
end
Hacked By AnonymousFox1.0, Coded By AnonymousFox