From 7771252a627e3039426c372b8379706ff22f920f Mon Sep 17 00:00:00 2001 From: Bin Yang Date: Tue, 4 Feb 2020 12:56:07 +0800 Subject: Fix issues concerning the https endpoint Change-Id: I3500deb56603e64b0fae2ebc91c50f43c36efbd6 Issue-ID: MULTICLOUD-978 Signed-off-by: Bin Yang --- fcaps/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fcaps') diff --git a/fcaps/run.sh b/fcaps/run.sh index b5e1a61f..e8b82097 100644 --- a/fcaps/run.sh +++ b/fcaps/run.sh @@ -22,7 +22,7 @@ nohup celery -A fcaps worker --concurrency=1 --loglevel=info & #nohup python manage.py runserver 0.0.0.0:9011 2>&1 & if [ "${SSL_ENABLED}" == "true" ]; then - nohup uwsgi --https :9001,fcaps/pub/ssl/cert/cert.crt,fcaps/pub/ssl/cert/cert.key,HIGH --module fcaps.wsgi --master --enable-threads --processes 4 & + nohup uwsgi --https :9011,fcaps/pub/ssl/cert/cert.crt,fcaps/pub/ssl/cert/cert.key,HIGH --module fcaps.wsgi --master --enable-threads --processes 4 & else nohup uwsgi --http :9011 --module fcaps.wsgi --master --enable-threads --processes 4 & fi -- cgit 1.2.3-korg