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

main
Last change on this file was e080eef, checked in by Fiona Klute <fiona.klute@…>, 3 years ago

Use default priorities in tests that don't require specific ones

Setting GnuTLSPriorities in all tests is a relic of the time when it
didn't have a default value, and is not needed anymore, except for
tests that specifically test priority configuration.

  • Property mode set to 100644
File size: 580 bytes
Line 
1Include ${srcdir}/base_apache.conf
2Include ${srcdir}/proxy_mods.conf
3
4GnuTLSCache ${DEFAULT_CACHE}
5
6<VirtualHost _default_:${TEST_PORT}>
7 ServerName ${TEST_HOST}
8 GnuTLSEnable On
9 GnuTLSCertificateFile  authority/server/x509.pem
10 GnuTLSKeyFile          authority/server/secret.key
11
12 GnuTLSProxyEngine              On
13 GnuTLSProxyKeyFile             authority/client/secret.key
14 GnuTLSProxyCertificateFile     authority/client/x509.pem
15 GnuTLSProxyCAFile              authority/x509.pem
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.