Add /ssl prefix for Hass.IO SSL settings

This commit is contained in:
Michael Hansen
2020-04-23 16:59:29 -04:00
parent 3c53cd0236
commit 77d2196f00
+1 -1
View File
@@ -28,7 +28,7 @@ if [[ -f "${CONFIG_PATH}" ]]; then
if [[ "${ssl}" == 'true' ]]; then
certfile="$(jq --raw-output '.certfile' "${CONFIG_PATH}")"
keyfile="$(jq --raw-output '.keyfile' "${CONFIG_PATH}")"
RHASSPY_ARGS+=('--ssl' "${certfile}" "${keyfile}")
RHASSPY_ARGS+=('--ssl' "/ssl/${certfile}" "/ssl/${keyfile}")
fi
fi