# Note: /usr/local/apache/libexec/mod_ruby.so is just an example. # You should specify the correct path to mod_ruby.so. LoadModule ruby_module libexec/apache/mod_ruby.so # # If ClearModuleList is used in your httpd.conf, you should use AddModule # # to activate the ruby module. # AddModule mod_ruby.c # If the ruby module is installed, this will be enabled. # for Apache::RubyRun RubyRequire apache/ruby-run # exec files under /ruby as ruby scripts. SetHandler ruby-object RubyHandler Apache::RubyRun.instance Options +ExecCGI # exec *.rbx as ruby scripts. SetHandler ruby-object RubyHandler Apache::RubyRun.instance # # for Apache::ERubyRun # RubyRequire apache/eruby-run # # # handle files under /eruby as eRuby files by eruby. # # SetHandler ruby-object # RubyHandler Apache::ERubyRun.instance # # # # handle *.rhtml as eruby files. # # SetHandler ruby-object # RubyHandler Apache::ERubyRun.instance # # # for Apache::ERbRun # RubyRequire apache/erb-run # # # handle files under /erb as eRuby files by ERb. # # SetHandler ruby-object # RubyHandler Apache::ERbRun.instance # # # for debug # RubyRequire auto-reload