[ 
https://issues.apache.org/jira/browse/IGNITE-12503?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17060160#comment-17060160
 ] 

Ilya Kasnacheev commented on IGNITE-12503:
------------------------------------------

[~dmekhanikov] please consider the following example:

{code}
For SSL-based connectors (in jetty-https.xml and jetty-http2.xml), the common 
"httpConfig" instance is used as the basis to create an SSL specific 
configuration with ID "sslHttpConfig":

<New id="sslHttpConfig" class="org.eclipse.jetty.server.HttpConfiguration">
  <Arg><Ref refid="httpConfig"/></Arg>
  <Call name="addCustomizer">
    <Arg><New class="org.eclipse.jetty.server.SecureRequestCustomizer"/></Arg>
  </Call>
</New>

This adds a SecureRequestCustomizer which adds SSL Session IDs and certificate 
information as request attributes.
{code}

> Fix SSL configuration in Jetty REST: httpCfg assignment
> -------------------------------------------------------
>
>                 Key: IGNITE-12503
>                 URL: https://issues.apache.org/jira/browse/IGNITE-12503
>             Project: Ignite
>          Issue Type: Bug
>          Components: rest
>            Reporter: Ilya Kasnacheev
>            Assignee: Ilya Kasnacheev
>            Priority: Minor
>              Labels: easyfix
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> {code}
>                             <New 
> class="org.eclipse.jetty.server.HttpConnectionFactory">
>                                 <Ref refid="httpCfg"/>
>                             </New>
> {code}
> should become
> {code}
>                             <New 
> class="org.eclipse.jetty.server.HttpConnectionFactory">
>                                 <Arg><Ref refid="httpCfg"/></Arg>
>                             </New>
> {code}
> Or this assignment is not being made.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to