diff options
Diffstat (limited to 'docs/conf/httpd.conf.in')
-rw-r--r-- | docs/conf/httpd.conf.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/conf/httpd.conf.in b/docs/conf/httpd.conf.in index ef3f3adefe..1da6390bb1 100644 --- a/docs/conf/httpd.conf.in +++ b/docs/conf/httpd.conf.in @@ -155,6 +155,16 @@ DocumentRoot "@exp_htdocsdir@" # Require all granted + # + # <Directory> and <Location> directives inherit their parent's authorization + # rules and applies them using AND logic instead of the previous OR logic of + # Apache 2.2 and before. To disable the merging of these rules use + # "AuthzMergeRules Off". + # + # This prevents the "Require all denied" rule in "<Directory />" above + # from being included in this directory's configuration. + # + AuthzMergeRules Off </Directory> # |