diff options
author | Bin Yang <bin.yang@windriver.com> | 2020-02-04 21:25:21 +0800 |
---|---|---|
committer | Bin Yang <bin.yang@windriver.com> | 2020-02-04 21:25:21 +0800 |
commit | 2c84ff5d8932ddb2783fcdd2ea55536a2804f1b1 (patch) | |
tree | 9739987ff39e30ef8ae6eda58e88eeb9ae73c008 /ocata/run.sh | |
parent | 6d8aa821b9d11a466c65098849d6d518439fcdb0 (diff) |
Fix openstack plugins https endpoint issue
Add cert files into assembly
Change-Id: I36dad8186a7d191e53b8e69ac56765c187b02caa
Issue-ID: MULTICLOUD-978
Signed-off-by: Bin Yang <bin.yang@windriver.com>
Diffstat (limited to 'ocata/run.sh')
-rwxr-xr-x | ocata/run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ocata/run.sh b/ocata/run.sh index a1f44ed2..3de3780d 100755 --- a/ocata/run.sh +++ b/ocata/run.sh @@ -20,7 +20,7 @@ export PYTHONPATH=lib/share #nohup python manage.py runserver 0.0.0.0:9006 2>&1 & if [ ${SSL_ENABLED} = "true" ]; then - nohup uwsgi --https :9006,ocata/pub/ssl/cert/cert.crt,ocata/pub/ssl/cert/cert.key --module ocata.wsgi --master --enable-threads --processes 4 & + nohup uwsgi --https :9006,ocata/pub/ssl/cert/cert.crt,ocata/pub/ssl/cert/cert.key,HIGH --module ocata.wsgi --master --enable-threads --processes 4 & else nohup uwsgi --http :9006 --module ocata.wsgi --master --enable-threads --processes 4 & |