You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
391 B
18 lines
391 B
18 years ago
|
##
|
||
|
## apache-ruby.conf -- Apache configuration for Ruby
|
||
|
##
|
||
|
|
||
|
# load DSO
|
||
|
LoadModule ruby_module @l_prefix@/libexec/apache/mod_ruby.so
|
||
|
|
||
|
# load initialization script
|
||
|
RubyRequire @l_prefix@/etc/apache/apache-ruby.rb
|
||
|
|
||
|
# activate CGI acceleration by file extension
|
||
|
<Files ~ "\.rb$">
|
||
|
SetHandler ruby-object
|
||
|
RubyHandler Apache::RubyRun.instance
|
||
|
Options +ExecCGI
|
||
|
</Files>
|
||
|
|