From 2c84ff5d8932ddb2783fcdd2ea55536a2804f1b1 Mon Sep 17 00:00:00 2001 From: Bin Yang Date: Tue, 4 Feb 2020 21:25:21 +0800 Subject: Fix openstack plugins https endpoint issue Add cert files into assembly Change-Id: I36dad8186a7d191e53b8e69ac56765c187b02caa Issue-ID: MULTICLOUD-978 Signed-off-by: Bin Yang --- pike/assembly.xml | 2 ++ pike/run.sh | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'pike') diff --git a/pike/assembly.xml b/pike/assembly.xml index 420c6c49..650c234d 100644 --- a/pike/assembly.xml +++ b/pike/assembly.xml @@ -32,6 +32,8 @@ **/*.xsd **/*.bpel **/*.yml + **/*.crt + **/*.key diff --git a/pike/run.sh b/pike/run.sh index 3822c8a5..c3c962ee 100755 --- a/pike/run.sh +++ b/pike/run.sh @@ -19,7 +19,7 @@ export PYTHONPATH=lib/share #nohup python manage.py runserver 0.0.0.0:9007 2>&1 & if [ ${SSL_ENABLED} = "true" ]; then - nohup uwsgi --https :9007,pike/pub/ssl/cert/cert.crt,pike/pub/ssl/cert/cert.key --module pike.wsgi --master --enable-threads --processes 4 & + nohup uwsgi --https :9007,pike/pub/ssl/cert/cert.crt,pike/pub/ssl/cert/cert.key,HIGH --module pike.wsgi --master --enable-threads --processes 4 & else nohup uwsgi --http :9007 --module pike.wsgi --master --enable-threads --processes 4 & -- cgit 1.2.3-korg