diff options
author | 2007-01-15 20:09:32 +0000 | |
---|---|---|
committer | 2007-01-15 20:09:32 +0000 | |
commit | 16acc4952287af6f1b836bc0a067effb4d91f87e (patch) | |
tree | ff0d7ef07a5700d582e57fea034f5c850847d050 /dev-ruby/mod_ruby/files | |
parent | Cleanup. (diff) | |
download | historical-16acc4952287af6f1b836bc0a067effb4d91f87e.tar.gz historical-16acc4952287af6f1b836bc0a067effb4d91f87e.tar.bz2 historical-16acc4952287af6f1b836bc0a067effb4d91f87e.zip |
Cleanup.
Package-Manager: portage-2.1.2_rc4-r8
Diffstat (limited to 'dev-ruby/mod_ruby/files')
-rw-r--r-- | dev-ruby/mod_ruby/files/mod_ruby.conf | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/dev-ruby/mod_ruby/files/mod_ruby.conf b/dev-ruby/mod_ruby/files/mod_ruby.conf deleted file mode 100644 index 2caed81309bb..000000000000 --- a/dev-ruby/mod_ruby/files/mod_ruby.conf +++ /dev/null @@ -1,39 +0,0 @@ -# REQUIRED -LoadModule ruby_module extramodules/mod_ruby.so - -<IfModule mod_ruby.c> - # for Apache::RubyRun - RubyRequire apache/ruby-run - # for Apache::ERubyRun - RubyRequire apache/eruby-run - # for development - # RubyRequire auto-reload - - # OPTIONAL - # exec files under /ruby as ruby scripts. - <Location /ruby> - SetHandler ruby-object - RubyHandler Apache::RubyRun.instance - </Location> - - # OPTIONAL - # exec *.rbx as ruby scripts. - <Files *.rbx> - SetHandler ruby-object - RubyHandler Apache::RubyRun.instance - </Files> - - # OPTIONAL - # handle *.rhtml as eruby files. - <Files *.rhtml> - SetHandler ruby-object - RubyHandler Apache::ERubyRun.instance - </Files> - - # OPTIONAL - # handle files under /eruby as eruby files. - <Location /eruby> - SetHandler ruby-object - RubyHandler Apache::ERubyRun.instance - </Location> -</IfModule> |