Module: Apache::Directories
- Included in:
- Config
- Defined in:
- lib/apache/directory.rb
Overview
Methods to handle directory settings
Instance Method Summary collapse
-
#index_options(*opt) ⇒ Object
Create an IndexOptions directive.
-
#options(*opt) ⇒ Object
Create an Options directive.
Instance Method Details
#index_options(*opt) ⇒ Object
Create an IndexOptions directive
The options passed into this method are Apachified:
:fancy_indexing, :suppress_description #=> IndexOptions FancyIndexing SuppressDescription
16 17 18 |
# File 'lib/apache/directory.rb', line 16 def (*opt) ('index_options'.apachify, *opt) end |
#options(*opt) ⇒ Object
Create an Options directive
The options passed into this method are Apachified:
:exec_cgi, :follow_sym_links #=> Options ExecCGI FollowSymLinks
8 9 10 |
# File 'lib/apache/directory.rb', line 8 def (*opt) ('options'.apachify, *opt) end |