summaryrefslogtreecommitdiffstats
path: root/src/main/config/ajsc-jetty.xml
blob: 449f7de1f38e81f5918c88cf65f1eb96bbfd534b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?xml version="1.0"  encoding="UTF-8"?>
<!--
     ============LICENSE_START=======================================================
     org.onap.dmaap
     ================================================================================
     Copyright © 2017 AT&T Intellectual Property. All rights reserved.
     ================================================================================
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at
           http://www.apache.org/licenses/LICENSE-2.0
     
     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
     ============LICENSE_END=========================================================
   
     ECOMP is a trademark and service mark of AT&T Intellectual Property.
     
 -->

<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_0.dtd">
<Configure id="ajsc-server" class="org.eclipse.jetty.server.Server">
	<!-- DO NOT REMOVE!!!! This is setting up the AJSC Context -->
	<New id="ajscContext" class="org.eclipse.jetty.webapp.WebAppContext">
		<Set name="contextPath"><SystemProperty name="AJSC_CONTEXT_PATH" /></Set>
		<Set name="extractWAR">true</Set>
		<Set name="tempDirectory"><SystemProperty name="AJSC_TEMP_DIR" /></Set>
		<Set name="war"><SystemProperty name="AJSC_WAR_PATH" /></Set>
		<Set name="descriptor"><SystemProperty name="AJSC_HOME" />/etc/runner-web.xml</Set>
		<Set name="overrideDescriptor"><SystemProperty name="AJSC_HOME" />/etc/ajsc-override-web.xml</Set>
		<Set name="throwUnavailableOnStartupException">true</Set>
		<Set name="extraClasspath"><SystemProperty name="AJSC_HOME" />/extJars/json-20131018.jar</Set>
		<Set name="servletHandler">
			<New class="org.eclipse.jetty.servlet.ServletHandler">
				<Set name="startWithUnavailable">false</Set>
			</New>
		</Set>
	</New>
	
	<Set name="handler">
		<New id="Contexts" class="org.eclipse.jetty.server.handler.ContextHandlerCollection">
			<Set name="Handlers">
				<Array type="org.eclipse.jetty.webapp.WebAppContext">
					<Item>
						<Ref refid="ajscContext" />
					</Item>
				</Array>
			</Set>
		</New>
	</Set>
	
	<Call name="addBean">
		<Arg>
			<New id="DeploymentManager" class="org.eclipse.jetty.deploy.DeploymentManager">
				<Set name="contexts">
					<Ref refid="Contexts" />
				</Set>
				<Call id="extAppHotDeployProvider" name="addAppProvider">
					<Arg>
						<New class="org.eclipse.jetty.deploy.providers.WebAppProvider">
							<Set name="monitoredDirName"><SystemProperty name="AJSC_HOME" />/extApps</Set>
							<Set name="scanInterval">10</Set>
							<Set name="extractWars">true</Set>
						</New>
					</Arg>
				</Call>
			</New>
		</Arg>
	</Call>
	
	<Call name="addConnector">
		<Arg>
			<New class="org.eclipse.jetty.server.ServerConnector">
				<Arg name="server">
					<Ref refid="ajsc-server" />
				</Arg>
				<Set name="port"><SystemProperty name="AJSC_HTTP_PORT" default="8080" /></Set>
			</New>
		</Arg>
	</Call>
	
	
	<!-- SSL Keystore configuration -->
	
	 <New id="sslContextFactory" class="org.eclipse.jetty.util.ssl.SslContextFactory">
		 			<Set name="KeyStorePath"><SystemProperty name="AJSC_HOME" />/bundleconfig/etc/org.onap.dmaap.mr.jks</Set>
		 			<Set name="KeyStorePassword">oKt1E9fT8%2KFe58#z!sfFi2</Set>
		 			<Set name="KeyManagerPassword">oKt1E9fT8%2KFe58#z!sfFi2</Set>
		 			<Set name="WantClientAuth">true</Set>
	 </New>
         <Call id="sslConnector" name="addConnector">
                 <Arg>
                     <New class="org.eclipse.jetty.server.ServerConnector">
                     <Arg name="server">
                             <Ref refid="ajsc-server" />
                     </Arg>
                     <Arg name="factories">
                        <Array type="org.eclipse.jetty.server.ConnectionFactory">
                                  <Item>
                                          <New class="org.eclipse.jetty.server.SslConnectionFactory">
                                                <Arg name="next">http/1.1</Arg>
                                                <Arg name="sslContextFactory">
                                                       <Ref refid="sslContextFactory" />
                                                </Arg>
                                          </New>
                                  </Item>
                                <Item>
                                   <New class="org.eclipse.jetty.server.HttpConnectionFactory">
                                         <Arg name="config">
                                          <New class="org.eclipse.jetty.server.HttpConfiguration">
                                                 <Call name="addCustomizer">                                                                                                                                                     <Arg>
                                                                  <New class="org.eclipse.jetty.server.SecureRequestCustomizer" />
                                                         </Arg>
                                                 </Call>
                                         </New>
                                         </Arg>
                                </New>
                              </Item>
                         </Array>
                       </Arg>
                        <Set name="port"><SystemProperty name="AJSC_HTTPS_PORT" default="0" /></Set>
                               <Set name="idleTimeout">30000</Set>
                         </New>
                  </Arg>
        </Call>
        
	

	<Get name="ThreadPool">
		<Set name="minThreads"><SystemProperty name="AJSC_JETTY_ThreadCount_MIN" /></Set>
		<Set name="maxThreads"><SystemProperty name="AJSC_JETTY_ThreadCount_MAX" /></Set>
		<Set name="idleTimeout"><SystemProperty name="AJSC_JETTY_IDLETIME_MAX" /></Set>
		<Set name="detailedDump">false</Set>
	</Get>
	
</Configure>