Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: fbf4d080e0e2b704c62af22b2915856b55157cef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
# Protocol Negotiatin Selection Module
#

[depend]
protonego-impl/${protonego}

[ini-template]
# Protocol Negotiation Implementation Selection
#  choices are:
#    'npn'  : original implementation for SPDY (now deprecated)
#    'alpn' : replacement for NPN, in use by current SPDY implementations
#             and the future HTTP/2 spec
#  Note: java 1.8+ are ALPN only.
protonego=alpn

# Configuration for NPN
# npn.protocols=spdy/3,http/1.1
# npn.defaultProtocol=http/1.1

# Configuration for ALPN
# alpn.protocols=h2-14,http/1.1
# alpn.defaultProtocol=http/1.1

Back to the top