source: mod_gnutls/test/tests/37_TLS_reverse_proxy_resume_session/apache.conf @ b6ce8ad

main mod_gnutls/0.12.0
Last change on this file since b6ce8ad was a4e3b2c, checked in by Fiona Klute <fiona.klute@…>, 3 years ago

Simple test for proxy session resumption

  • Property mode set to 100644
File size: 515 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    GnuTLSProxyCAFile authority/x509.pem
14    ProxyPass         /proxy/ https://${BACKEND_HOST}:${BACKEND_PORT}/
15    ProxyPassReverse  /proxy/ https://${BACKEND_HOST}:${BACKEND_PORT}/
16</VirtualHost>
Note: See TracBrowser for help on using the repository browser.