Skip to content
Snippets Groups Projects
Commit 07d3a187 authored by tbrehm's avatar tbrehm
Browse files

Fixed: FS#1232 - Apache syntax error

parent 6c343bcc
No related branches found
No related tags found
No related merge requests found
...@@ -67,6 +67,15 @@ ...@@ -67,6 +67,15 @@
AddOutputFilter INCLUDES .shtml AddOutputFilter INCLUDES .shtml
Options +Includes Options +Includes
</tmpl_if> </tmpl_if>
<tmpl_if name='php' op='==' value='no'>
<Files ~ '.php[s3-6]{0,1}$'>
Order allow,deny
Deny from all
Allow from none
</Files>
</tmpl_if>
</Directory>
<tmpl_if name='ruby' op='==' value='y'> <tmpl_if name='ruby' op='==' value='y'>
<IfModule mod_ruby.c> <IfModule mod_ruby.c>
<Directory {tmpl_var name='web_document_root'}> <Directory {tmpl_var name='web_document_root'}>
...@@ -85,15 +94,6 @@ ...@@ -85,15 +94,6 @@
</IfModule> </IfModule>
</tmpl_if> </tmpl_if>
<tmpl_if name='php' op='==' value='no'>
<Files ~ '.php[s3-6]{0,1}$'>
Order allow,deny
Deny from all
Allow from none
</Files>
</tmpl_if>
</Directory>
<tmpl_if name='cgi' op='==' value='y'> <tmpl_if name='cgi' op='==' value='y'>
# cgi enabled # cgi enabled
<Directory {tmpl_var name='document_root'}/cgi-bin> <Directory {tmpl_var name='document_root'}/cgi-bin>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment