소스 검색

Fix error with HTTPS (unset if false)

Joachim M. Giæver 3 년 전
부모
커밋
a2f4554b12
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 8 0
      src/helper/env-wrapper

+ 8 - 0
src/helper/env-wrapper

@@ -83,8 +83,16 @@ export SERVER_HOST=$(snapctl get server.host)
 export SERVER_PORT=$(snapctl get server.port)
 export SERVER_URL=$(snapctl get server.url)
 export SERVER_WS_URL=$(snapctl get server.ws-url)
+
 export GIT_DIR="${SNAP}/usr/lib/zwavejs2mqtt/.git"
 
+export HTTPS="${SERVER_SSL}"
+
+if [ "${HTTPS}" != "true" ]; then
+    unset HTTPS
+    unset SERVER_SSL
+fi
+
 export HOST="${SERVER_HOST}"
 export PORT="${SERVER_PORT}"