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

12 lines
211 B
Ruby
Raw Normal View History

2010-05-05 14:44:20 +00:00
module Apache
module Directories
def options(*opt)
2010-05-05 16:25:07 +00:00
self << "Options #{apachify(opt) * " "}"
end
def index_options(*opt)
self << "IndexOptions #{apachify(opt) * " "}"
2010-05-05 14:44:20 +00:00
end
end
end