source: mod_gnutls/test/base_apache.conf

main
Last change on this file 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 
1ServerName ${TEST_HOST}
2ServerRoot ${PWD}
3DefaultRuntimeDir cache/
4
5LogFormat "%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>
11ErrorLog logs/${TEST_NAME}.error.log
12HostnameLookups Off
13KeepAlive On
14LogLevel debug
15
16# The mpm module to use (event or worker) is selected in
17# apache-conf/required-modules.conf, see required-modules.py
18StartServers    2
19MinSpareThreads 10
20
21LoadModule      authn_core_module       ${AP_LIBEXECDIR}/mod_authn_core.so
22LoadModule      authz_core_module       ${AP_LIBEXECDIR}/mod_authz_core.so
23LoadModule      mime_module             ${AP_LIBEXECDIR}/mod_mime.so
24
25LoadModule      socache_shmcb_module    ${AP_LIBEXECDIR}/mod_socache_shmcb.so
26Define          DEFAULT_CACHE   shmcb:cache/gnutls_cache_${TEST_NAME}(65536)
27
28TypesConfig ${srcdir}/mime.types
29
30Include         apache-conf/*.conf
31
32DocumentRoot ${srcdir}/data
33LoadModule gnutls_module ../src/.libs/mod_gnutls.so
Note: See TracBrowser for help on using the repository browser.