source: mod_gnutls/test/tests/28_HTTP2_support/apache.conf @ e819f13

asynciomainproxy-ticket
Last change on this file since e819f13 was e819f13, checked in by Fiona Klute <fiona.klute@…>, 3 years ago

Unconditionally enable early SNI parsing

All supported GnuTLS versions provide gnutls_ext_raw_parse(), so
there's no more need to provide a fallback for older versions.

  • Property mode set to 100644
File size: 803 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        GnuTLSPriorities        NORMAL
19</VirtualHost>
20
21<VirtualHost _default_:${TEST_PORT}>
22        Protocols               h2 http/1.1
23        ServerName              ${TEST_HOST}
24        GnuTLSEnable            On
25        GnuTLSCertificateFile   authority/server/x509.pem
26        GnuTLSKeyFile           authority/server/secret.key
27        GnuTLSPriorities        NORMAL
28</VirtualHost>
Note: See TracBrowser for help on using the repository browser.