diff options
author | 2018-04-21 15:45:59 +0200 | |
---|---|---|
committer | 2018-04-21 15:47:55 +0200 | |
commit | 0f4323b10cab6300c42fd236598bfe5668a64d44 (patch) | |
tree | 03cf83f250b823c0f646c5beeed16bdc1828ba3e | |
parent | 75fb4f1f47bfec02aff4b03b2e5ed5a94b86509a (diff) |
Fix HTTP protocol used over HTTPS port
Change-Id: I24ebeb65e2cd1d0177dbd7f826d0275ce235dea7
Signed-off-by: Denes Nemeth <denes.nemeth@nokia.com>
Issue-ID: MSB-195
-rw-r--r-- | standalone/src/main/assembly/docker/instance_config.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/standalone/src/main/assembly/docker/instance_config.sh b/standalone/src/main/assembly/docker/instance_config.sh index 8987eef..a52335d 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:443|" /home/esr/conf/extsys.yml +sed -i "s|msbServerAddr.*|msbServerAddr: http://$MSB_IP|" /home/esr/conf/extsys.yml cat /home/esr/conf/extsys.yml |