summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Longinotti <chtekk@gentoo.org>2007-01-15 20:09:32 +0000
committerLuca Longinotti <chtekk@gentoo.org>2007-01-15 20:09:32 +0000
commitdd81efc8faf12993ca8d664f3adcbf89298402a6 (patch)
treef10ce93009a1caf0c55e3f59e11ed5ee97eb960b /dev-ruby/mod_ruby/files
parentCleanup. (diff)
downloadgentoo-2-dd81efc8faf12993ca8d664f3adcbf89298402a6.tar.gz
gentoo-2-dd81efc8faf12993ca8d664f3adcbf89298402a6.tar.bz2
gentoo-2-dd81efc8faf12993ca8d664f3adcbf89298402a6.zip
Cleanup.
(Portage version: 2.1.2_rc4-r8) (Unsigned Manifest commit)
Diffstat (limited to 'dev-ruby/mod_ruby/files')
-rw-r--r--dev-ruby/mod_ruby/files/mod_ruby.conf39
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>