diff options
author | hekeguang <hekeguang@chinamobile.com> | 2020-03-11 12:52:23 +0800 |
---|---|---|
committer | hekeguang <hekeguang@chinamobile.com> | 2020-03-11 12:52:31 +0800 |
commit | b90be8714b9e5cf84ab3f0c9fe6d12a604450368 (patch) | |
tree | 02ec88b14a9eec0529dde2018da073f773628dca /distribution/src/main/assembly | |
parent | 86e490cc3dbf13fdd70d100d5461f4010cf5c15b (diff) |
In order to support HTTPS service, we need to replace https port, thank you!
Issue-ID: USECASEUI-401
Change-Id: I85db343a3bee1a68e73b68eb3e1c2e128e86ace4
Signed-off-by: hekeguang <hekeguang@chinamobile.com>
Diffstat (limited to 'distribution/src/main/assembly')
-rw-r--r-- | distribution/src/main/assembly/server.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distribution/src/main/assembly/server.xml b/distribution/src/main/assembly/server.xml index 329a5be6..69683fb3 100644 --- a/distribution/src/main/assembly/server.xml +++ b/distribution/src/main/assembly/server.xml @@ -71,7 +71,7 @@ connectionTimeout="20000"
redirectPort="8443" />
-->
-<Connector port="8080" protocol="org.apache.coyote.http11.Http11NioProtocol"
+<Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol"
maxThreads="150" SSLEnabled="true" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" keystoreFile="conf/uuiServer.jks" keystorePass="Aa123456" />
@@ -119,7 +119,7 @@ -->
<!-- Define an AJP 1.3 Connector on port 8009 -->
- <Connector port="8009" protocol="AJP/1.3" redirectPort="8080" />
+ <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
<!-- An Engine represents the entry point (within Catalina) that processes
|