From 1832447fb6d40fbfb695896ff6a9c511e8405f7f Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 28 Oct 2005 20:37:21 +0000 Subject: You've been down that road, Neo. You know where it ends. And I know it's not where you want to be. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2791 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/lib/commands/lighttpd.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 railties/lib/commands/lighttpd.rb (limited to 'railties/lib') diff --git a/railties/lib/commands/lighttpd.rb b/railties/lib/commands/lighttpd.rb new file mode 100644 index 0000000000..612bd693ce --- /dev/null +++ b/railties/lib/commands/lighttpd.rb @@ -0,0 +1,16 @@ +if RUBY_PLATFORM !~ /mswin/ && `lighttpd -version 2>/dev/null`.size > 0 + puts "=> Rails application started on http://0.0.0.0:3000" + + if ARGV.first == "-d" + puts "=> Configure in config/lighttpd.conf" + detach = true + else + puts "=> Call with -d to detach; Configure in config/lighttpd.conf" + puts "=> Ctrl-C to shutdown server (see config/lighttpd.conf for options)" + detach = false + end + + `lighttpd -f #{File.dirname(__FILE__) + "/../"}/config/lighttpd.conf` +else + puts "lighttpd is not available on your system (or not in your path)" +end \ No newline at end of file -- cgit v1.2.3