Fix starlingx plugin https endpoint issue 92/101092/2
authorBin Yang <bin.yang@windriver.com>
Tue, 4 Feb 2020 08:54:04 +0000 (16:54 +0800)
committerBin Yang <bin.yang@windriver.com>
Tue, 4 Feb 2020 09:10:54 +0000 (17:10 +0800)
Change-Id: Ie0d39af21cbad4eb1d4663e878e41c21efae8f2a
Issue-ID: MULTICLOUD-978
Signed-off-by: Bin Yang <bin.yang@windriver.com>
starlingx/run.sh

index bea2977..7916951 100755 (executable)
 
 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 &