source: mod_gnutls/test/tests/19_TLS_reverse_proxy/apache.conf @ 3e04c0b

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

Test suite: Don't restrict IP addresses of virtual hosts

The IP addresses the servers started by the test suite listen on are
already restricted by the "Listen" statement in test/base_apache.conf,
so restricting individual virtual hosts only makes changes to those
addresses unnecessarily complicated.

  • Property mode set to 100644
File size: 515 bytes
Line 
1Include ${srcdir}/base_apache.conf
2Include ${srcdir}/proxy_mods.conf
3
4GnuTLSCache dbm cache/gnutls_cache
5
6<VirtualHost _default_:${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 GnuTLSProxyCAFile      authority/x509.pem
15 GnuTLSProxyPriorities  NORMAL
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.