summaryrefslogtreecommitdiffstats
path: root/public/dispatch.cgi.example
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2007-04-25 16:21:23 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2007-04-25 16:21:23 +0000
commit8e4a5996b03e037c62ef560d9e6851eda5a6fa69 (patch)
tree974c2cad8ab8069a79b71bdb8df9511455d227f6 /public/dispatch.cgi.example
parent52547466f0f1ce8b41bf1539546aaa28457077a1 (diff)
downloadredmine-8e4a5996b03e037c62ef560d9e6851eda5a6fa69.tar.gz
redmine-8e4a5996b03e037c62ef560d9e6851eda5a6fa69.zip
Fixed: 9268 These files should be moved out of revision control
Renamed to *.example: * config/database.yml * public/dispatch.cgi * public/dispatch.fcgi * public/dispatch.rb git-svn-id: http://redmine.rubyforge.org/svn/trunk@480 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public/dispatch.cgi.example')
-rwxr-xr-xpublic/dispatch.cgi.example10
1 files changed, 10 insertions, 0 deletions
diff --git a/public/dispatch.cgi.example b/public/dispatch.cgi.example
new file mode 100755
index 000000000..9730473f2
--- /dev/null
+++ b/public/dispatch.cgi.example
@@ -0,0 +1,10 @@
+#!/usr/bin/ruby
+
+require File.dirname(__FILE__) + "/../config/environment" unless defined?(RAILS_ROOT)
+
+# If you're using RubyGems and mod_ruby, this require should be changed to an absolute path one, like:
+# "/usr/local/lib/ruby/gems/1.8/gems/rails-0.8.0/lib/dispatcher" -- otherwise performance is severely impaired
+require "dispatcher"
+
+ADDITIONAL_LOAD_PATHS.reverse.each { |dir| $:.unshift(dir) if File.directory?(dir) } if defined?(Apache::RubyRun)
+Dispatcher.dispatch \ No newline at end of file