12
12
import org .eclipse .jetty .http2 .HTTP2Cipher ;
13
13
import org .eclipse .jetty .http2 .server .HTTP2ServerConnectionFactory ;
14
14
import org .eclipse .jetty .io .NetworkTrafficListener ;
15
- import org .eclipse .jetty .server .*;
15
+ import org .eclipse .jetty .server .HttpConfiguration ;
16
+ import org .eclipse .jetty .server .HttpConnectionFactory ;
17
+ import org .eclipse .jetty .server .SecureRequestCustomizer ;
18
+ import org .eclipse .jetty .server .Server ;
19
+ import org .eclipse .jetty .server .ServerConnector ;
20
+ import org .eclipse .jetty .server .SslConnectionFactory ;
21
+ import org .eclipse .jetty .server .handler .HandlerCollection ;
16
22
import org .eclipse .jetty .util .ssl .SslContextFactory ;
17
23
18
24
public class Jetty94HttpServer extends JettyHttpServer {
@@ -27,39 +33,45 @@ protected MultipartRequestConfigurer buildMultipartRequestConfigurer() {
27
33
}
28
34
29
35
@ Override
30
- protected ServerConnector createHttpsConnector (Server server , String bindAddress , HttpsSettings httpsSettings , JettySettings jettySettings , NetworkTrafficListener listener ) {
31
- SslContextFactory .Server http2SslContextFactory = buildHttp2SslContextFactory (httpsSettings );
32
-
33
- HttpConfiguration httpConfig = createHttpConfig (jettySettings );
34
- httpConfig .setSecureScheme ("https" );
35
- httpConfig .setSecurePort (httpsSettings .port ());
36
- httpConfig .setSendXPoweredBy (false );
37
- httpConfig .setSendServerVersion (false );
38
- httpConfig .addCustomizer (new SecureRequestCustomizer ());
36
+ protected ServerConnector createHttpConnector (String bindAddress , int port , JettySettings jettySettings , NetworkTrafficListener listener ) {
39
37
40
- HttpConnectionFactory http = new HttpConnectionFactory (httpConfig );
41
- HTTP2ServerConnectionFactory h2 = new HTTP2ServerConnectionFactory (httpConfig );
42
-
43
- ALPNServerConnectionFactory alpn = new ALPNServerConnectionFactory ();
38
+ ConnectionFactories connectionFactories = buildConnectionFactories (jettySettings , 0 );
39
+ return createServerConnector (
40
+ bindAddress ,
41
+ jettySettings ,
42
+ port ,
43
+ listener ,
44
+ // http needs to be the first (the default)
45
+ connectionFactories .http ,
46
+ // alpn & h2 are included so that HTTPS forward proxying can find them
47
+ connectionFactories .alpn ,
48
+ connectionFactories .h2
49
+ );
50
+ }
44
51
45
- SslConnectionFactory ssl = new SslConnectionFactory (http2SslContextFactory , alpn .getProtocol ());
52
+ @ Override
53
+ protected ServerConnector createHttpsConnector (Server server , String bindAddress , HttpsSettings httpsSettings , JettySettings jettySettings , NetworkTrafficListener listener ) {
46
54
47
- ConnectionFactory [] connectionFactories = new ConnectionFactory [] {
48
- ssl ,
49
- alpn ,
50
- h2 ,
51
- http
52
- };
55
+ ConnectionFactories connectionFactories = buildConnectionFactories (jettySettings , httpsSettings .port ());
56
+ SslConnectionFactory ssl = sslConnectionFactory (httpsSettings );
53
57
54
58
return createServerConnector (
55
59
bindAddress ,
56
60
jettySettings ,
57
61
httpsSettings .port (),
58
62
listener ,
59
- connectionFactories
63
+ ssl ,
64
+ connectionFactories .alpn ,
65
+ connectionFactories .h2 ,
66
+ connectionFactories .http
60
67
);
61
68
}
62
69
70
+ private SslConnectionFactory sslConnectionFactory (HttpsSettings httpsSettings ) {
71
+ SslContextFactory .Server http2SslContextFactory = buildHttp2SslContextFactory (httpsSettings );
72
+ return new SslConnectionFactory (http2SslContextFactory , "alpn" );
73
+ }
74
+
63
75
private SslContextFactory .Server buildHttp2SslContextFactory (HttpsSettings httpsSettings ) {
64
76
SslContextFactory .Server sslContextFactory = new SslContextFactory .Server ();
65
77
@@ -75,4 +87,56 @@ private SslContextFactory.Server buildHttp2SslContextFactory(HttpsSettings https
75
87
sslContextFactory .setProvider ("Conscrypt" );
76
88
return sslContextFactory ;
77
89
}
90
+
91
+ @ Override
92
+ protected HttpConfiguration createHttpConfig (JettySettings jettySettings ) {
93
+ HttpConfiguration httpConfig = super .createHttpConfig (jettySettings );
94
+ httpConfig .setSendXPoweredBy (false );
95
+ httpConfig .setSendServerVersion (false );
96
+ httpConfig .addCustomizer (new SecureRequestCustomizer ());
97
+ return httpConfig ;
98
+ }
99
+
100
+ @ Override
101
+ protected HandlerCollection createHandler (
102
+ Options options ,
103
+ AdminRequestHandler adminRequestHandler ,
104
+ StubRequestHandler stubRequestHandler
105
+ ) {
106
+ HandlerCollection handler = super .createHandler (options , adminRequestHandler , stubRequestHandler );
107
+
108
+ ManInTheMiddleSslConnectHandler manInTheMiddleSslConnectHandler = new ManInTheMiddleSslConnectHandler (
109
+ sslConnectionFactory (options .httpsSettings ())
110
+ );
111
+
112
+ handler .addHandler (manInTheMiddleSslConnectHandler );
113
+
114
+ return handler ;
115
+ }
116
+
117
+ private ConnectionFactories buildConnectionFactories (
118
+ JettySettings jettySettings ,
119
+ int securePort
120
+ ) {
121
+ HttpConfiguration httpConfig = createHttpConfig (jettySettings );
122
+ httpConfig .setSecurePort (securePort );
123
+
124
+ HttpConnectionFactory http = new HttpConnectionFactory (httpConfig );
125
+ HTTP2ServerConnectionFactory h2 = new HTTP2ServerConnectionFactory (httpConfig );
126
+ ALPNServerConnectionFactory alpn = new ALPNServerConnectionFactory ();
127
+
128
+ return new ConnectionFactories (http , h2 , alpn );
129
+ }
130
+
131
+ private static class ConnectionFactories {
132
+ private final HttpConnectionFactory http ;
133
+ private final HTTP2ServerConnectionFactory h2 ;
134
+ private final ALPNServerConnectionFactory alpn ;
135
+
136
+ private ConnectionFactories (HttpConnectionFactory http , HTTP2ServerConnectionFactory h2 , ALPNServerConnectionFactory alpn ) {
137
+ this .http = http ;
138
+ this .h2 = h2 ;
139
+ this .alpn = alpn ;
140
+ }
141
+ }
78
142
}
0 commit comments