source: mod_gnutls/test/tests/28_HTTP2_support/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: 753 bytes
Line 
1Include ${srcdir}/base_apache.conf
2GnuTLSCache ${DEFAULT_CACHE}
3
4LoadModule      http2_module    ${AP_LIBEXECDIR}/mod_http2.so
5
6LoadModule      status_module   ${AP_LIBEXECDIR}/mod_status.so
7<Location /status>
8        SetHandler server-status
9</Location>
10
11# Different ALPN settings on the same port work only with early SNI
12<VirtualHost _default_:${TEST_PORT}>
13        # No "Protocols" directive, HTTP/1.1 only
14        ServerName              vhost.example.com
15        GnuTLSEnable            On
16        GnuTLSCertificateFile   authority/server/x509.pem
17        GnuTLSKeyFile           authority/server/secret.key
18</VirtualHost>
19
20<VirtualHost _default_:${TEST_PORT}>
21        Protocols               h2 http/1.1
22        ServerName              ${TEST_HOST}
23        GnuTLSEnable            On
24        GnuTLSCertificateFile   authority/server/x509.pem
25        GnuTLSKeyFile           authority/server/secret.key
26</VirtualHost>
Note: See TracBrowser for help on using the repository browser.