diff options
author | Bin Yang <bin.yang@windriver.com> | 2020-02-04 16:54:04 +0800 |
---|---|---|
committer | Bin Yang <bin.yang@windriver.com> | 2020-02-04 17:10:54 +0800 |
commit | f49acc70c897a763b0eb5b6c2998dbbc537346c1 (patch) | |
tree | 35c777e3db36f4af9372d1c6c8861c46986d2ea9 /starlingx | |
parent | 7771252a627e3039426c372b8379706ff22f920f (diff) |
Fix starlingx plugin https endpoint issue
Change-Id: Ie0d39af21cbad4eb1d4663e878e41c21efae8f2a
Issue-ID: MULTICLOUD-978
Signed-off-by: Bin Yang <bin.yang@windriver.com>
Diffstat (limited to 'starlingx')
-rwxr-xr-x | starlingx/run.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/starlingx/run.sh b/starlingx/run.sh index bea29775..79169514 100755 --- a/starlingx/run.sh +++ b/starlingx/run.sh @@ -15,10 +15,10 @@ memcached -d -m 2048 -c 1024 -p 11211 -P /tmp/memcached1.pid export PYTHONPATH=lib/share -uwsgi --http :9009 --module starlingx.wsgi --master --processes 4 +# uwsgi --http :9009 --module starlingx.wsgi --master --processes 4 if [ ${SSL_ENABLED} = "true" ]; then - nohup uwsgi --https :9009,starlingx/pub/ssl/cert/cert.crt,starlingx/pub/ssl/cert/cert.key --module starlingx.wsgi --master --enable-threads --processes 4 & + nohup uwsgi --https :9009,starlingx/pub/ssl/cert/cert.crt,starlingx/pub/ssl/cert/cert.key,HIGH --module starlingx.wsgi --master --enable-threads --processes 4 & else nohup uwsgi --http :9009 --module starlingx.wsgi --master --enable-threads --processes 4 & |