source: mod_gnutls/test/tests/20_TLS_reverse_proxy_client_auth/apache.conf @ 7225749

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

Rename option SSLProxyEngine to GnuTLSProxyEngine

This matches the general option naming scheme and avoids confusion with
mod_ssl. TLS proxy support was not implemented in earlier releases of
mod_gnutls, so the change should not cause problems.

  • Property mode set to 100644
File size: 602 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 GnuTLSProxyEngine              On
14 GnuTLSProxyKeyFile             client/secret.key
15 GnuTLSProxyCertificateFile     client/x509.pem
16 GnuTLSProxyCAFile              authority/x509.pem
17 GnuTLSProxyPriorities          NORMAL
18 ProxyPass /proxy/ https://${BACKEND_HOST}:${BACKEND_PORT}/
19 ProxyPassReverse /proxy/ https://${BACKEND_HOST}:${BACKEND_PORT}/
20</VirtualHost>
Note: See TracBrowser for help on using the repository browser.