Sha256: 532c0679bec0c6b28f598ce86b6d3387c94ac13066548463292392be16a0db59
Contents?: true
Size: 1.01 KB
Versions: 3
Compression:
Stored size: 1.01 KB
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 global queue $queue = RestFtpDaemon::JobQueue.new # Create global counters $counters = RestFtpDaemon::Counters.new # Initialize workers and conchita subsystem $pool = RestFtpDaemon::WorkerPool.new # Rack authent unless Conf[:adminpwd].nil? use Rack::Auth::Basic, "Restricted Area" do |username, password| [username, password] == ["admin", Conf[:adminpwd]] end end # NewRelic profiling # GC::Profiler.enable if Conf.newrelic_enabled? # Serve static assets use Rack::Static, urls: ["/css", "/js", "/images"], root: "#{Conf.app_libs}/static/" # Rack reloader and mini-profiler unless Conf.app_env == "production" # use Rack::Reloader, 1 # use Rack::MiniProfiler end # Set up encodings Encoding.default_internal = "utf-8" Encoding.default_external = "utf-8" # Launch the main daemon run RestFtpDaemon::API::Root
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rest-ftp-daemon-0.300.3 | config.ru |
rest-ftp-daemon-0.300.2 | config.ru |
rest-ftp-daemon-0.300.1 | config.ru |