2 # -*- encoding: binary -*-
3 require 'unicorn/launcher'
6 ENV["RACK_ENV"] ||= "development"
9 options
= { :listeners => listeners
}
10 host
, port
= Unicorn
::Const::DEFAULT_HOST, Unicorn
::Const::DEFAULT_PORT
13 opts
= OptionParser
.new("", 24, ' ') do |opts
|
14 opts
.banner
= "Usage: #{File.basename($0)} " \
15 "[ruby options] [unicorn options] [rackup config file]"
17 opts
.separator
"Ruby options:"
20 opts
.on("-e", "--eval LINE", "evaluate a LINE of code") do |line
|
21 eval line
, TOPLEVEL_BINDING
, "-e", lineno
25 opts
.on("-d", "--debug", "set debugging flags (set $DEBUG to true)") do
29 opts
.on("-w", "--warn", "turn warnings on for your script") do
33 opts
.on("-I", "--include PATH",
34 "specify $LOAD_PATH (may be used more than once)") do |path
|
35 $LOAD_PATH.unshift(*path
.split(/:/))
38 opts
.on("-r", "--require LIBRARY",
39 "require the library, before executing your script") do |library
|
43 opts
.separator
"Unicorn options:"
45 # some of these switches exist for rackup command-line compatibility,
47 opts
.on("-o", "--host HOST",
48 "listen on HOST (default: #{Unicorn::Const::DEFAULT_HOST})") do |h
|
53 opts
.on("-p", "--port PORT",
54 "use PORT (default: #{Unicorn::Const::DEFAULT_PORT})") do |p
|
59 opts
.on("-E", "--env ENVIRONMENT",
60 "use ENVIRONMENT for defaults (default: development)") do |e
|
64 opts
.on("-D", "--daemonize", "run daemonized in the background") do |d
|
65 daemonize
= d
? true : false
68 opts
.on("-P", "--pid FILE", "DEPRECATED") do |f
|
69 warn
%q{Use of --pid/-P is strongly discouraged}
70 warn %q{Use the 'pid' directive in the Unicorn config file instead}
71 options[:pid] = File.expand_path(f)
74 opts.on("-s", "--server SERVER",
75 "this flag only exists for compatibility") do |s|
76 warn "-s/--server only exists for compatibility with rackup"
79 # Unicorn-specific stuff
80 opts.on("-l", "--listen {HOST:PORT|PATH}",
81 "listen on HOST:PORT or PATH",
82 "this may be specified multiple times",
83 "(default: #{Unicorn::Const::DEFAULT_LISTEN})") do |address|
87 opts.on("-c", "--config-file FILE", "Unicorn-specific config file") do |f|
88 options[:config_file] = File.expand_path(f)
91 # I'm avoiding Unicorn-specific config options on the command-line.
92 # IMNSHO, config options on the command-line are redundant given
93 # config files and make things unnecessarily complicated with multiple
94 # places to look for a config option.
96 opts.separator "Common options:"
98 opts.on_tail("-h", "--help", "Show this message") do
99 puts opts.to_s.gsub(/^.*DEPRECATED.*$/s, '')
103 opts.on_tail("-v", "--version", "Show version") do
104 puts "unicorn v#{Unicorn::Const::UNICORN_VERSION}"
111 config = ARGV[0] || "config.ru"
112 abort "configuration file #{config} not found" unless File.exist?(config)
115 # parse embedded command-line options in config.ru comments
116 if File.open(config, "rb") { |fp| fp.sysread(fp.stat.size) } =~ /^#\\(.*)/
117 opts.parse! $1.split(/\s+/)
121 require 'pp' if $DEBUG
124 # require Rack as late as possible in case $LOAD_PATH is modified
125 # in config.ru or command-line
126 inner_app = case config
128 raw = File.open(config, "rb") { |fp| fp.sysread(fp.stat.size) }
129 raw.sub!(/^__END__\n.*/, '')
130 eval("Rack::Builder.new {(#{raw}\n)}.to_app", nil, config)
133 Object.const_get(File.basename(config, '.rb').capitalize)
135 pp({ :inner_app => inner_app }) if $DEBUG
139 use Rack::CommonLogger, $stderr
140 use Rack::ShowExceptions
146 use Rack::CommonLogger, $stderr
154 listeners << "#{host}:#{port}" if set_listener
158 :unicorn_options => options,
160 :daemonize => daemonize,
164 Unicorn::Launcher.daemonize! if daemonize
165 Unicorn.run(app, options)