File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed
tests/regression/server_root/conf Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 11### Base configuration for starting Apache httpd
22
3- LoadModule access_compat_module /usr/lib/apache2/modules/mod_access_compat.so
4- LoadModule mpm_worker_module /usr/lib/apache2/modules/mod_mpm_worker.so
3+ <IfModule !mod_authz_core.c>
4+ LoadModule access_compat_module /usr/lib/apache2/modules/mod_access_compat.so
5+ LoadModule mpm_worker_module /usr/lib/apache2/modules/mod_mpm_worker.so
6+ </IfModule>
57
68<IfDefine !CHROOT>
79 # File locations
@@ -35,6 +37,13 @@ ErrorLog @MSC_REGRESSION_LOGS_DIR@/error.log
3537 Options +Indexes +FollowSymLinks
3638 AllowOverride None
3739 Allow from all
38- Satisfy Any
40+
41+ <IfModule !mod_authz_core.c>
42+ Satisfy Any
43+ </IfModule>
44+
45+ <IfModule mod_authz_core.c>
46+ Require all granted
47+ </IfModule>
3948 </Directory>
4049</IfDefine>
You can’t perform that action at this time.
0 commit comments