source: mod_gnutls/test/tests/04_name_based_vhosts/apache.conf @ 65a13b5

asynciomain
Last change on this file since 65a13b5 was 65a13b5, checked in by Fiona Klute <fiona.klute@…>, 2 years ago

Restructure 04_basic_nosni into a test setup for name based vhosts

The apache.conf should support integrating most related tests as
additional connections, some minor adjustments may be required when
they get integrated.

  • Property mode set to 100644
File size: 758 bytes
Line 
1Include ${srcdir}/base_apache.conf
2
3GnuTLSCache ${DEFAULT_CACHE}
4
5<VirtualHost _default_:${TEST_PORT}>
6    ServerName ${TEST_HOST}
7    GnuTLSEnable On
8    GnuTLSCertificateFile       authority/server/x509.pem
9    GnuTLSKeyFile               authority/server/secret.key
10</VirtualHost>
11
12<VirtualHost _default_:${TEST_PORT}>
13    ServerName meow.test
14    ServerAlias *.meow.test
15    GnuTLSEnable On
16    GnuTLSCertificateFile       authority/meow.test/x509.pem
17    GnuTLSKeyFile               authority/meow.test/secret.key
18</VirtualHost>
19
20<VirtualHost _default_:${TEST_PORT}>
21    ServerName domain.test
22    ServerAlias www.domain.test
23    ServerAlias *.example.test
24    GnuTLSEnable On
25    GnuTLSCertificateFile       authority/server/x509.pem
26    GnuTLSKeyFile               authority/server/secret.key
27</VirtualHost>
Note: See TracBrowser for help on using the repository browser.