summaryrefslogtreecommitdiffstats
path: root/res/run.sh
diff options
context:
space:
mode:
authordengyh <dengyuanhong@chinamobile.com>2020-06-23 16:53:55 +0800
committerYuanhong Deng <dengyuanhong@chinamobile.com>2020-06-28 04:25:08 +0000
commit51f734a5ddad883cf94b6d6e0e4e3d3348ca33a4 (patch)
treee2f0765aef40915deb2188e4c144645625fffe92 /res/run.sh
parent6d68252d8aa403cec8a087b77b27a9719d8c1350 (diff)
Implementation of HTTPS support for VFC-vnfres project interface
Change-Id: I79aaf45cb613d8c1093275455dca41012039a51a Issue-ID: VFC-1676 Signed-off-by: dengyh <dengyuanhong@chinamobile.com>
Diffstat (limited to 'res/run.sh')
-rwxr-xr-xres/run.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/res/run.sh b/res/run.sh
index eefa818..fe390f5 100755
--- a/res/run.sh
+++ b/res/run.sh
@@ -18,11 +18,11 @@ if [ ! -x $logDir ]; then
mkdir -p $logDir
fi
-nohup python manage.py runserver 0.0.0.0:8802 > /dev/null &
+# nohup python manage.py runserver 0.0.0.0:8802 > /dev/null &
-# if [ "${SSL_ENABLED}" = "true" ]; then
-# nohup uwsgi --https :8802,res/pub/ssl/cert/foobar.crt,res/pub/ssl/cert/foobar.key, -t 120 --module res.wsgi --master --processes 4 &
-# else
-# nohup uwsgi --http :8802 -t 120 --module res.wsgi --master --processes 4 &
-# fi
+if [ "${SSL_ENABLED}" = "true" ]; then
+ nohup uwsgi --https :8802,res/pub/ssl/cert/foobar.crt,res/pub/ssl/cert/foobar.key, -t 120 --module res.wsgi --master --processes 4 &
+else
+ nohup uwsgi --http :8802 -t 120 --module res.wsgi --master --processes 4 &
+fi