source: mod_gnutls/test/tests/09_verify_no_sni_fails_with_wrong_order/apache.conf @ 8dcf888

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

Rename test suite directory from t/ to test/

This is the same name Apache uses for the test directory.

  • Property mode set to 100644
File size: 578 bytes
Line 
1Include ${PWD}/../../base_apache.conf
2
3GnuTLSCache dbm cache/gnutls_cache
4
5NameVirtualHost ${TEST_IP}:${TEST_PORT}
6
7# In this order, clients with no SNI should get the imposter's key
8
9<VirtualHost ${TEST_IP}:${TEST_PORT}>
10 ServerName imposter.example
11 GnuTLSEnable On
12 GnuTLSCertificateFile imposter/x509.pem
13 GnuTLSKeyFile imposter/secret.key
14 GnuTLSPriorities NORMAL
15</VirtualHost>
16
17<VirtualHost ${TEST_IP}:${TEST_PORT}>
18 ServerName ${TEST_HOST}
19 GnuTLSEnable On
20 GnuTLSCertificateFile server/x509.pem
21 GnuTLSKeyFile server/secret.key
22 GnuTLSPriorities NORMAL
23</VirtualHost>
24
Note: See TracBrowser for help on using the repository browser.