diff options
author | Bin Yang <bin.yang@windriver.com> | 2020-02-04 12:56:07 +0800 |
---|---|---|
committer | Bin Yang <bin.yang@windriver.com> | 2020-02-04 13:09:57 +0800 |
commit | 7771252a627e3039426c372b8379706ff22f920f (patch) | |
tree | bcc1515bfe77fd5d1963c6e723443ed1c170abbb /fcaps | |
parent | 74278035bbbb535274f74bb00c4e71eb4daf2fe2 (diff) |
Fix issues concerning the https endpoint
Change-Id: I3500deb56603e64b0fae2ebc91c50f43c36efbd6
Issue-ID: MULTICLOUD-978
Signed-off-by: Bin Yang <bin.yang@windriver.com>
Diffstat (limited to 'fcaps')
-rw-r--r-- | fcaps/run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |