asynciodebian/masterproxy-ticket
Last change
on this file since 4e388b0 was
bd1d8d3,
checked in by Fiona Klute <fiona.klute@…>, 2 years ago
|
Test suite: Stop proxy backend servers from writing to proxy access log
Having multiple CustomLog? directives means the server will write to
all listed files. Do not apply the default one defined in
test/base_apache.conf if the server is a proxy backend, which has its
own log (defined in test/proxy_backend.conf.in).
|
-
Property mode set to
100644
|
File size:
926 bytes
|
Line | |
---|
1 | ServerRoot ${PWD} |
---|
2 | DefaultRuntimeDir cache/ |
---|
3 | |
---|
4 | LogFormat "%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> |
---|
10 | ErrorLog logs/${TEST_NAME}.error.log |
---|
11 | HostnameLookups Off |
---|
12 | KeepAlive Off |
---|
13 | LogLevel debug |
---|
14 | LoadModule mpm_worker_module ${AP_LIBEXECDIR}/mod_mpm_worker.so |
---|
15 | LoadModule authn_core_module ${AP_LIBEXECDIR}/mod_authn_core.so |
---|
16 | LoadModule authz_core_module ${AP_LIBEXECDIR}/mod_authz_core.so |
---|
17 | LoadModule mime_module ${AP_LIBEXECDIR}/mod_mime.so |
---|
18 | |
---|
19 | LoadModule socache_shmcb_module ${AP_LIBEXECDIR}/mod_socache_shmcb.so |
---|
20 | Define DEFAULT_CACHE shmcb:cache/gnutls_cache_${TEST_NAME}(65536) |
---|
21 | |
---|
22 | TypesConfig ${srcdir}/mime.types |
---|
23 | |
---|
24 | Include apache-conf/*.conf |
---|
25 | |
---|
26 | DocumentRoot ${srcdir}/data |
---|
27 | LoadModule gnutls_module ../src/.libs/mod_gnutls.so |
---|
Note: See
TracBrowser
for help on using the repository browser.