Changeset 97d7c63 in mod_gnutls
- Timestamp:
- Oct 10, 2017, 1:37:04 PM (5 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, master, proxy-ticket, upstream
- Children:
- 967bf9b
- Parents:
- e00d91a
- Location:
- test
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
test/Makefile.am
re00d91a r97d7c63 211 211 # port for MSVA in test cases that use it 212 212 MSVA_PORT ?= 9933 213 # port for OCSP server (Apache vhost if enabled) 213 # port for TLS proxy backend server 214 BACKEND_PORT ?= 9934 215 # port for the OCSP responder 214 216 if ENABLE_OCSP_TEST 215 217 OCSP_PORT ?= 9936 … … 230 232 export TEST_QUERY_TIMEOUT="@TEST_QUERY_TIMEOUT@"; \ 231 233 export BACKEND_HOST="@TEST_HOST@"; \ 234 export BACKEND_PORT="$(BACKEND_PORT)"; \ 232 235 export HTTP_CLI="@HTTP_CLI@"; 233 236 -
test/proxy_backend.bash
re00d91a r97d7c63 3 3 set -e 4 4 . ${srcdir}/common.bash 5 6 if [ -z "${BACKEND_HOST}" ]; then7 export BACKEND_HOST="localhost"8 fi9 if [ -z "${BACKEND_PORT}" ]; then10 export BACKEND_PORT="9934"11 fi12 : ${srcdir:="."}13 : ${APACHE2:="apache2"}14 : ${TEST_LOCK_WAIT:="30"}15 5 16 6 function backend_apache … … 28 18 ( 29 19 export TEST_NAME 30 export TEST_PORT="${BACKEND_PORT}"31 20 export srcdir="$(realpath ${srcdir})" 32 21 local flock_cmd="" -
test/proxy_backend.conf.in
re00d91a r97d7c63 1 # redefine TEST_PORT before loading the base config 2 Define TEST_PORT ${BACKEND_PORT} 3 Include ${srcdir}/base_apache.conf 4 1 5 # common options for proxy backend servers 2 6 CustomLog logs/${TEST_NAME}.backend.access.log combined -
test/tests/19_TLS_reverse_proxy/backend.conf
re00d91a r97d7c63 1 Include ${srcdir}/base_apache.conf 2 Include proxy_backend.conf 1 Include ${PWD}/proxy_backend.conf 3 2 4 3 GnuTLSCache dbm cache/gnutls_cache -
test/tests/20_TLS_reverse_proxy_client_auth/backend.conf
re00d91a r97d7c63 1 Include ${srcdir}/base_apache.conf 2 Include proxy_backend.conf 1 Include ${PWD}/proxy_backend.conf 3 2 4 3 GnuTLSCache dbm cache/gnutls_cache -
test/tests/21_TLS_reverse_proxy_wrong_cert/backend.conf
re00d91a r97d7c63 1 Include ${srcdir}/base_apache.conf 2 Include proxy_backend.conf 1 Include ${PWD}/proxy_backend.conf 3 2 4 3 GnuTLSCache dbm cache/gnutls_cache -
test/tests/22_TLS_reverse_proxy_crl_revoke/backend.conf
re00d91a r97d7c63 1 Include ${srcdir}/base_apache.conf 2 Include proxy_backend.conf 1 Include ${PWD}/proxy_backend.conf 3 2 4 3 GnuTLSCache dbm cache/gnutls_cache -
test/tests/23_TLS_reverse_proxy_mismatched_priorities/backend.conf
re00d91a r97d7c63 1 Include ${srcdir}/base_apache.conf 2 Include proxy_backend.conf 1 Include ${PWD}/proxy_backend.conf 3 2 4 3 GnuTLSCache dbm cache/gnutls_cache
Note: See TracChangeset
for help on using the changeset viewer.