diff options
author | dengyh <dengyuanhong@chinamobile.com> | 2020-06-23 16:53:55 +0800 |
---|---|---|
committer | Yuanhong Deng <dengyuanhong@chinamobile.com> | 2020-06-28 04:25:08 +0000 |
commit | 51f734a5ddad883cf94b6d6e0e4e3d3348ca33a4 (patch) | |
tree | e2f0765aef40915deb2188e4c144645625fffe92 /res/run.sh | |
parent | 6d68252d8aa403cec8a087b77b27a9719d8c1350 (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-x | res/run.sh | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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 |