source: mod_gnutls/test/tests/23_TLS_reverse_proxy_mismatched_priorities/apache.conf @ 7813802

asynciodebian/masterdebian/stretch-backportsjessie-backportsmainproxy-ticketupstream
Last change on this file since 7813802 was 7813802, checked in by Thomas Klute <thomas2.klute@…>, 8 years ago

Test suite: Use AP_LIBEXECDIR to find Apache modules

Distributions install Apache modules to different locations, so hard
coded paths will cause problems. Use the module directory detected by
./configure instead.

  • Property mode set to 100644
File size: 540 bytes
Line 
1Include ${srcdir}/base_apache.conf
2Include ${srcdir}/proxy_mods.conf
3
4GnuTLSCache dbm cache/gnutls_cache
5
6<VirtualHost ${TEST_IP}:${TEST_PORT}>
7 ServerName ${TEST_HOST}
8 GnuTLSEnable On
9 GnuTLSCertificateFile server/x509.pem
10 GnuTLSKeyFile server/secret.key
11 GnuTLSPriorities NORMAL
12
13 SSLProxyEngine On
14 GnuTLSProxyCAFile      authority/x509.pem
15 GnuTLSProxyPriorities  NORMAL:-VERS-TLS-ALL:+VERS-TLS1.2
16 ProxyPass /proxy/ https://${BACKEND_HOST}:${BACKEND_PORT}/
17 ProxyPassReverse /proxy/ https://${BACKEND_HOST}:${BACKEND_PORT}/
18</VirtualHost>
Note: See TracBrowser for help on using the repository browser.