lighttpd.rb 1.5 KB
Newer Older
1
unless RUBY_PLATFORM !~ /mswin/ && !silence_stderr { `lighttpd -version` }.blank?
2 3 4 5 6 7
  puts "PROBLEM: Lighttpd is not available on your system (or not in your path)"
  exit 1
end

unless defined?(FCGI)
  puts "PROBLEM: Lighttpd requires that the FCGI Ruby bindings are installed on the system"
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
  exit 1
end

def tail_f(input)
  loop do
    line = input.gets
    yield line if line
    if input.eof?
      sleep 1
      input.seek(input.tell)
    end
  end
end

config_file = "#{RAILS_ROOT}/config/lighttpd.conf"

24 25 26 27 28 29 30 31
unless File.exist?(config_file)
  require 'fileutils'
  source = File.expand_path(File.join(File.dirname(__FILE__),
     "..", "..", "..", "configs", "lighttpd.conf"))
  puts "=> #{config_file} not found, copying from #{source}"
  FileUtils.cp source, config_file
end

32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
port = IO.read(config_file).scan(/^server.port\s*=\s*(\d+)/).first rescue 3000
puts "=> Rails application started on http://0.0.0.0:#{port}"

if ARGV.first == "-d"
  puts "=> Configure in config/lighttpd.conf"
  detach = true
else
  puts "=> Call with -d to detach (requires absolute paths in config/lighttpd.conf)"
  puts "=> Ctrl-C to shutdown server (see config/lighttpd.conf for options)"
  detach = false

  Process.detach(fork do
    begin
      File.open("#{RAILS_ROOT}/log/#{RAILS_ENV}.log", 'r') do |log|
        log.seek(0, IO::SEEK_END)
        tail_f(log) {|line| puts line}
      end
    rescue Exception
    end
    exit
  end)
end

55 56 57
trap(:INT) { exit }
Thread.new { sleep 0.5; `open http://0.0.0.0:#{port}` } if RUBY_PLATFORM =~ /darwin/
`lighttpd #{!detach ? "-D " : ""}-f #{config_file}`