asynciomainproxy-ticket
Last change
on this file since 10100a2 was
ee6351d,
checked in by Fiona Klute <fiona.klute@…>, 3 years ago
|
Test suite: Use mod_mpm_event by default
The "event" MPM module is more reliable, Valgrind tests showed
occasional mutex errors during shutdown in "worker". The tests still
fall back on the "worker" MPM if "event" is not available (that was
the case on Debian/HURD the last time I checked).
|
-
Property mode set to
100644
|
File size:
1.0 KB
|
Line | |
---|
1 | ServerName ${TEST_HOST} |
---|
2 | ServerRoot ${PWD} |
---|
3 | DefaultRuntimeDir cache/ |
---|
4 | |
---|
5 | LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined |
---|
6 | <IfDefine !BACKEND_PORT> |
---|
7 | # Proxy backend servers have their own access log, prevent |
---|
8 | # them from writing to the default one. |
---|
9 | CustomLog logs/${TEST_NAME}.access.log combined |
---|
10 | </IfDefine> |
---|
11 | ErrorLog logs/${TEST_NAME}.error.log |
---|
12 | HostnameLookups Off |
---|
13 | KeepAlive On |
---|
14 | LogLevel debug |
---|
15 | |
---|
16 | # The mpm module to use (event or worker) is selected in |
---|
17 | # apache-conf/required-modules.conf, see required-modules.py |
---|
18 | StartServers 2 |
---|
19 | MinSpareThreads 10 |
---|
20 | |
---|
21 | LoadModule authn_core_module ${AP_LIBEXECDIR}/mod_authn_core.so |
---|
22 | LoadModule authz_core_module ${AP_LIBEXECDIR}/mod_authz_core.so |
---|
23 | LoadModule mime_module ${AP_LIBEXECDIR}/mod_mime.so |
---|
24 | |
---|
25 | LoadModule socache_shmcb_module ${AP_LIBEXECDIR}/mod_socache_shmcb.so |
---|
26 | Define DEFAULT_CACHE shmcb:cache/gnutls_cache_${TEST_NAME}(65536) |
---|
27 | |
---|
28 | TypesConfig ${srcdir}/mime.types |
---|
29 | |
---|
30 | Include apache-conf/*.conf |
---|
31 | |
---|
32 | DocumentRoot ${srcdir}/data |
---|
33 | LoadModule gnutls_module ../src/.libs/mod_gnutls.so |
---|
Note: See
TracBrowser
for help on using the repository browser.