File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
tests/regression/server_root/conf Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 11### Base configuration for starting Apache httpd
22
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>
7-
83<IfDefine !CHROOT>
94 # File locations
105 PidFile @MSC_REGRESSION_LOGS_DIR@/httpd.pid
@@ -31,19 +26,24 @@ CoreDumpDirectory @MSC_REGRESSION_SERVERROOT_DIR@/tmp
3126LogLevel debug
3227ErrorLog @MSC_REGRESSION_LOGS_DIR@/error.log
3328
29+ <IfVersion >= 2.4>
30+ LoadModule access_compat_module /usr/lib/apache2/modules/mod_access_compat.so
31+ LoadModule mpm_worker_module /usr/lib/apache2/modules/mod_mpm_worker.so
32+ </IfVersion>
33+
3434<IfDefine !CHROOT>
3535 DocumentRoot @MSC_REGRESSION_DOCROOT_DIR@
3636 <Directory "@MSC_REGRESSION_DOCROOT_DIR@">
3737 Options +Indexes +FollowSymLinks
3838 AllowOverride None
39- Allow from all
4039
41- <IfModule !mod_authz_core.c>
40+ <IfVersion >= 2.4>
41+ Allow from all
4242 Satisfy Any
43- </IfModule >
43+ </IfVersion >
4444
45- <IfModule mod_authz_core.c >
45+ <IfVersion < 2.4 >
4646 Require all granted
47- </IfModule >
47+ </IfVersion >
4848 </Directory>
4949</IfDefine>
You can’t perform that action at this time.
0 commit comments