apache-config-generator/lib/apache/performance.rb

16 lines
347 B
Ruby
Raw Normal View History

2010-05-05 16:25:07 +00:00
module Apache
module Performance
def activate_keepalive(options)
self << "KeepAlive On"
options.each do |option, value|
case option
when :requests
self << "MaxKeepAliveRequests #{value}"
when :timeout
self << "KeepAliveTimeout #{value}"
end
end
end
end
end