summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiZi <li.zi30@zte.com.cn>2018-03-19 02:36:23 -0400
committerLiZi <li.zi30@zte.com.cn>2018-03-19 02:36:32 -0400
commit186c4b03cb192324f2d359273ee645d98ea8d1f2 (patch)
tree32cc804a7014cea8eeee4f8433a52ddf6c8876e3
parent8f2110fa99cda5a17fe62a3916fba2c3c5925c48 (diff)
Change the port config about MSB to 443
Change-Id: I526a6c484ed19db0c72e1596100d5cb2419cb0f1 Issue-ID: AAI-892 Signed-off-by: LiZi <li.zi30@zte.com.cn>
-rw-r--r--standalone/src/main/assembly/conf/extsys.yml2
-rw-r--r--standalone/src/main/assembly/docker/instance_config.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/standalone/src/main/assembly/conf/extsys.yml b/standalone/src/main/assembly/conf/extsys.yml
index 44b9b98..ec0382b 100644
--- a/standalone/src/main/assembly/conf/extsys.yml
+++ b/standalone/src/main/assembly/conf/extsys.yml
@@ -21,7 +21,7 @@ template: Hello, %s!
serviceIp: 127.0.0.1
msbDiscoveryIp: 127.0.0.1
msbDiscoveryPort: 10081
-msbServerAddr: http://127.0.0.1:80
+msbServerAddr: http://127.0.0.1:443
registByHand: true
# use the simple server factory if you only want to run on a single port
diff --git a/standalone/src/main/assembly/docker/instance_config.sh b/standalone/src/main/assembly/docker/instance_config.sh
index 4944df7..8987eef 100644
--- a/standalone/src/main/assembly/docker/instance_config.sh
+++ b/standalone/src/main/assembly/docker/instance_config.sh
@@ -4,6 +4,6 @@ MSB_IP=`echo $MSB_ADDR | cut -d: -f 1`
MSB_PORT=`echo $MSB_ADDR | cut -d: -f 2`
sed -i "s|msbDiscoveryIp.*|msbDiscoveryIp: $MSB_IP|" /home/esr/conf/extsys.yml
-sed -i "s|msbServerAddr.*|msbServerAddr: http://$MSB_IP:80|" /home/esr/conf/extsys.yml
+sed -i "s|msbServerAddr.*|msbServerAddr: http://$MSB_IP:443|" /home/esr/conf/extsys.yml
cat /home/esr/conf/extsys.yml