source: mod_gnutls/test/base_apache.conf @ c33b0ea

asynciomainproxy-ticket
Last change on this file since c33b0ea was d762813, checked in by Fiona Klute <fiona.klute@…>, 3 years ago

Test suite: Start fewer server processes

The test suite doesn't need the default three handler processes. In
fact keeping two is a stretch, but I want to keep multiple processes
so there's a chance related bugs will show up in tests.

  • Property mode set to 100644
File size: 961 bytes
Line 
1ServerRoot ${PWD}
2DefaultRuntimeDir cache/
3
4LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
5<IfDefine !BACKEND_PORT>
6        # Proxy backend servers have their own access log, prevent
7        # them from writing to the default one.
8        CustomLog       logs/${TEST_NAME}.access.log combined
9</IfDefine>
10ErrorLog logs/${TEST_NAME}.error.log
11HostnameLookups Off
12KeepAlive On
13LogLevel debug
14
15LoadModule      mpm_worker_module       ${AP_LIBEXECDIR}/mod_mpm_worker.so
16StartServers    2
17MinSpareThreads 10
18
19LoadModule      authn_core_module       ${AP_LIBEXECDIR}/mod_authn_core.so
20LoadModule      authz_core_module       ${AP_LIBEXECDIR}/mod_authz_core.so
21LoadModule      mime_module             ${AP_LIBEXECDIR}/mod_mime.so
22
23LoadModule      socache_shmcb_module    ${AP_LIBEXECDIR}/mod_socache_shmcb.so
24Define          DEFAULT_CACHE   shmcb:cache/gnutls_cache_${TEST_NAME}(65536)
25
26TypesConfig ${srcdir}/mime.types
27
28Include         apache-conf/*.conf
29
30DocumentRoot ${srcdir}/data
31LoadModule gnutls_module ../src/.libs/mod_gnutls.so
Note: See TracBrowser for help on using the repository browser.