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 1
1
### Base configuration for starting Apache httpd
2
2
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>
5
7
6
8
<IfDefine !CHROOT>
7
9
# File locations
@@ -35,6 +37,13 @@ ErrorLog @MSC_REGRESSION_LOGS_DIR@/error.log
35
37
Options +Indexes +FollowSymLinks
36
38
AllowOverride None
37
39
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>
39
48
</Directory>
40
49
</IfDefine>
You can’t perform that action at this time.
0 commit comments