aboutsummaryrefslogtreecommitdiffstats
path: root/run.sh
diff options
context:
space:
mode:
authoryangyan <yangyanyj@chinamobile.com>2019-05-07 14:50:54 +0800
committerYan Yang <yangyanyj@chinamobile.com>2019-05-08 01:45:43 +0000
commite603a9093e92129b3976997e62b98041d244c914 (patch)
treee4669ab647cc8a90119ffee8f05ec39764edd67b /run.sh
parent778bbebc3060fdd15546e722ab6c3c52a5d47fc0 (diff)
add paramters in run.sh
Change-Id: I8ab9c03550b7a6da1b9830c67d55f5daaab15e9c Issue-ID: VFC-1376 Signed-off-by: yangyan <yangyanyj@chinamobile.com>
Diffstat (limited to 'run.sh')
-rwxr-xr-xrun.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/run.sh b/run.sh
index dccfd2ee..a200ffc6 100755
--- a/run.sh
+++ b/run.sh
@@ -22,9 +22,9 @@ fi
#nohup uwsgi --http :8403 -t 120 --module lcm.wsgi --master --processes 4 &
if [ "${SSL_ENABLED}" = "true" ]; then
- nohup uwsgi --https :8403,lcm/pub/ssl/cert/foobar.crt,lcm/pub/ssl/cert/foobar.key, HIGH -t 120 --module lcm.wsgi --master --processes 4 &
+ nohup uwsgi --https :8403,lcm/pub/ssl/cert/foobar.crt,lcm/pub/ssl/cert/foobar.key, -t 120 --module lcm.wsgi --uid onap --gid onap --master --processes 4 &
else
- nohup uwsgi --http :8403 -t 120 --module lcm.wsgi --master --processes 4 &
+ nohup uwsgi --http :8403 -t 120 --module lcm.wsgi --uid onap --gid onap --master --processes 4 &
fi