From: Guangrong Fu Date: Tue, 16 Aug 2022 10:53:30 +0000 (+0800) Subject: bugfix - nginx fails to start up X-Git-Tag: 11.0.0~3 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=holmes%2Frule-management.git;a=commitdiff_plain;h=071f60ca7358101a5cd2ec864578ecc46511b241;hp=6ebc6d22c0654cbdfde1329d5ea7a2f23df5988d bugfix - nginx fails to start up Issue-ID: HOLMES-565 Signed-off-by: Guangrong Fu Change-Id: If09bdaad7536c4ccbaf04e9d4649bc2e62ca4488 --- diff --git a/rulemgt-standalone/src/main/assembly/bin/run.sh b/rulemgt-standalone/src/main/assembly/bin/run.sh index d1cebc3..873951f 100644 --- a/rulemgt-standalone/src/main/assembly/bin/run.sh +++ b/rulemgt-standalone/src/main/assembly/bin/run.sh @@ -119,9 +119,9 @@ else fi if [ "${ENABLE_ENCRYPT}"x = "true"x ]; then - sudo nginx -c /etc/nginx/conf.d/nginx-https.conf + nginx -c /etc/nginx/conf.d/nginx-https.conf else - sudo nginx -c /etc/nginx/conf.d/nginx-http.conf + nginx -c /etc/nginx/conf.d/nginx-http.conf fi echo nginx started.