Implementation of HTTPS support for VFC-vnflcm project interface 39/109439/3
authordengyh <dengyuanhong@chinamobile.com>
Tue, 23 Jun 2020 06:43:00 +0000 (14:43 +0800)
committerYuanhong Deng <dengyuanhong@chinamobile.com>
Sun, 28 Jun 2020 04:26:39 +0000 (04:26 +0000)
Change-Id: I8d4442657f3083e8449b94987324a630cf2d05a8
Issue-ID: VFC-1676
Signed-off-by: dengyh <dengyuanhong@chinamobile.com>
lcm/docker/instance_config.sh
lcm/lcm/pub/config/config.py
lcm/requirements.txt
lcm/run.sh
lcm/stop.sh

index 18dbd6b..0d2cd6c 100755 (executable)
@@ -24,6 +24,10 @@ if [ $REG_TO_MSB_WHEN_START ]; then
     sed -i "s|REG_TO_MSB_WHEN_START = .*|REG_TO_MSB_WHEN_START = '$REG_TO_MSB_WHEN_START'|" vfc/gvnfm/vnflcm/lcm/lcm/pub/config/config.py
 fi
 
+if [ $SSL_ENABLED ]; then
+    sed -i "s|SSL_ENABLED = .*|SSL_ENABLED = '$SSL_ENABLED'|"  vfc/gvnfm/vnflcm/lcm/lcm/pub/config/config.py
+fi
+
 sed -i "s/127.0.0.1:80/$MSB_IP:$MSB_PORT/" vfc/gvnfm/vnflcm/lcm/lcm/pub/config/config.py
 
 # Configure MYSQL
index b14a9e8..41f0eed 100644 (file)
@@ -42,10 +42,16 @@ AAI_PASSWD = "AAI"
 
 # [register]
 REG_TO_MSB_WHEN_START = True
+SSL_ENABLED = "true"
 REG_TO_MSB_REG_URL = "/api/microservices/v1/services"
+if SSL_ENABLED == "true":
+    enable_ssl = "true"
+else:
+    enable_ssl = "false"
 REG_TO_MSB_REG_PARAM = {
     "serviceName": "vnflcm",
     "version": "v1",
+    "enable_ssl": enable_ssl,
     "url": "/api/vnflcm/v1",
     "protocol": "REST",
     "visualRange": "1",
index fc44fc1..1ab0c53 100644 (file)
@@ -29,4 +29,4 @@ swagger-spec-validator>=2.1.0
 onappylog==1.0.9
 
 # uwsgi for parallel processing
-uwsgi
+uwsgi
index 295db79..57deaa1 100755 (executable)
@@ -17,11 +17,11 @@ if [ ! -x  $logDir  ]; then
        mkdir -p $logDir
 fi
 
-nohup python manage.py runserver 0.0.0.0:8801 > /dev/null &
+nohup python manage.py runserver 0.0.0.0:8801 > /dev/null &
 # nohup uwsgi --http :8801 -t 120 --module lcm.wsgi --master --processes 4 &
 
-if [ "${SSL_ENABLED}" = "true" ]; then
-    nohup uwsgi --https :8801,lcm/pub/ssl/cert/foobar.crt,lcm/pub/ssl/cert/foobar.key, -t 120 --enable-threads --module lcm.wsgi --master --processes 4 &
-else
-    nohup uwsgi --http :8801 -t 120 --enable-threads --module lcm.wsgi --master --processes 4 &
-fi
+if [ "${SSL_ENABLED}" = "true" ]; then
+    nohup uwsgi --https :8801,lcm/pub/ssl/cert/foobar.crt,lcm/pub/ssl/cert/foobar.key, -t 120 --enable-threads --module lcm.wsgi --master --processes 4 &
+else
+    nohup uwsgi --http :8801 -t 120 --enable-threads --module lcm.wsgi --master --processes 4 &
+fi
index 004fb0b..0d03d05 100755 (executable)
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-ps auxww | grep 'manage.py runserver 0.0.0.0:8801' | awk '{print $1}' | xargs kill -9
-# ps auxww |grep 'uwsgi --http' |awk '{print $1}' |xargs kill -9
\ No newline at end of file
+# ps auxww | grep 'manage.py runserver 0.0.0.0:8801' | awk '{print $1}' | xargs kill -9
+# ps auxww |grep 'uwsgi --http' |awk '{print $1}' |xargs kill -9
+
+if [ "${SSL_ENABLED}" = "true" ]; then
+   ps auxww |grep 'uwsgi --https :8801' |awk '{print $1}' |xargs kill -9
+else
+   ps auxww |grep 'uwsgi --http :8801' |awk '{print $1}' |xargs kill -9
+fi
\ No newline at end of file