Service Configuration >> Apache Configuration >> Global Configuration allows modifying 'Options' settings for / directory. However, unless either all check boxes are selected or none are selected, Options with - (minus) and those without are mixed in httpd.conf. For example: (Indexes and MultiViews check boxes selected, others not)
According to Apache manual this is not valid syntax [1].
Code:
<Directory "/">
Options -ExecCGI -FollowSymLinks -Includes -IncludesNOEXEC Indexes MultiViews -SymLinksIfOwnerMatch
AllowOverride None
</Directory>
According to Apache manual this is not valid syntax [1].
[1] Options DirectiveWarning
Mixing Options with a + or - with those without is not valid syntax, and is likely to cause unexpected results.