aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/docker/src/main/docker
diff options
context:
space:
mode:
authorKanagaraj Manickam <mkr1481@gmail.com>2020-02-21 16:40:59 +0530
committerKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>2020-02-21 16:40:59 +0530
commit85c6cc8a2e99312da893f8dba547137aa1c1c62d (patch)
tree6275fb52cf2146a1ca0711267b23b3db7a8d504d /deployment/docker/src/main/docker
parentb6e13813e915cc97246a22987004dafddf67d89c (diff)
Enable HTTPS
Issue-ID: OJSI-129 Change-Id: Ida43730821061fae1904bd16b140b0c5f98ddf55 Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Diffstat (limited to 'deployment/docker/src/main/docker')
-rw-r--r--deployment/docker/src/main/docker/Dockerfile7
1 files changed, 5 insertions, 2 deletions
diff --git a/deployment/docker/src/main/docker/Dockerfile b/deployment/docker/src/main/docker/Dockerfile
index 1c5fd404..44ae2efc 100644
--- a/deployment/docker/src/main/docker/Dockerfile
+++ b/deployment/docker/src/main/docker/Dockerfile
@@ -47,11 +47,14 @@ RUN apt-get update && apt-get install -y lighttpd git curl pandoc vim && \
if [ ! -d /var/www-data/servers/open-cli/ ]; then mkdir -p /var/www-data/servers/open-cli/; fi && \
cp $OPEN_CLI_HOME/http/web/*.* /var/www-data/servers/open-cli/ && \
cp $OPEN_CLI_HOME/http/lighttpd/10-proxy.conf /etc/lighttpd/conf-enabled/ && \
- cp $OPEN_CLI_HOME/installer/cli-*.zip /var/www-data/servers/open-cli/oclip.zip
+ cp $OPEN_CLI_HOME/installer/cli-*.zip /var/www-data/servers/open-cli/oclip.zip && \
+ cp $OPEN_CLI_HOME/http/web/ocomp.crt ~/.gotty.crt && \
+ cp $OPEN_CLI_HOME/http/web/ocomp.key ~/.gotty.key
+ #openssl req -x509 -nodes -days 9999 -newkey rsa:2048 -keyout ~/.ocomp.key -out ~/.ocomp.crt -subj "/C=IN/ST=KA/L=BLR/O=CLI/CN=onap"
EXPOSE 80
EXPOSE 8080
EXPOSE 50051
-ENTRYPOINT if [ "$OPEN_CLI_MODE" = "daemon" ]; then service lighttpd start; gotty --permit-write --reconnect oclip; \
+ENTRYPOINT if [ "$OPEN_CLI_MODE" = "daemon" ]; then service lighttpd start; gotty -t --permit-write --reconnect oclip; \
elif [ "$OPEN_CLI_MODE" = "ocs-web" ]; then echo "****** OCLIP Web Command Server ******"; service lighttpd start; \
elif [ "$OPEN_CLI_MODE" = "ocs-grpc" ]; then echo "****** OCLIP gRPC Command Server ******"; oclip-grpc; \
elif [ "$OPEN_CLI_MODE" = "occ" ]; then echo "****** OCLIP Web Command Console (OCC) ******"; gotty --permit-write --reconnect oclip; \