Sha256: e6b915c29239efaefa0151d4151dde18be5a4f1039bd74df930bd334ef0d535d

Contents?: true

Size: 811 Bytes

Versions: 7

Compression:

Stored size: 811 Bytes

Contents

# Load gem files
load_path_libs = File.expand_path(File.join(File.dirname(__FILE__), 'lib'))
$LOAD_PATH.unshift(load_path_libs) unless $LOAD_PATH.include?(load_path_libs)
require 'rest-ftp-daemon'

# Create queue and worker pool
$queue = RestFtpDaemon::JobQueue.new
$pool = RestFtpDaemon::WorkerPool.new(Settings.workers || APP_WORKERS)

# Rack reloader
unless Settings.namespace == "production"
  use Rack::Reloader, 0
end

# Rack authent
unless Settings.adminpwd.nil?
  use Rack::Auth::Basic, "Restricted Area" do |username, password|
    [username, password] == ['admin', Settings.adminpwd]
  end
end

# Serve static assets
use Rack::Static, :urls => ["/css", "/images"], :root => "#{APP_LIBS}/static/"

# Launch the main daemon
run RestFtpDaemon::API::Root
#run Rack::Cascade.new [RestFtpDaemon::API::Root]

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rest-ftp-daemon-0.210.2 config.ru
rest-ftp-daemon-0.210.1 config.ru
rest-ftp-daemon-0.210.0 config.ru
rest-ftp-daemon-0.202.2 config.ru
rest-ftp-daemon-0.202.1 config.ru
rest-ftp-daemon-0.202 config.ru
rest-ftp-daemon-0.200 config.ru