fix ssl
All checks were successful
continuous-integration/drone/tag Build is passing

This commit is contained in:
2022-03-14 09:00:31 +01:00
parent 9b7c6c6a7a
commit de0d9f9e1e
2 changed files with 3 additions and 3 deletions

View File

@@ -70,8 +70,8 @@ if bashio::config.true 'ssl'; then
certfile=$(bashio::config 'certfile' 10)
keyfile=$(bashio::config 'keyfile' 10)
cat >>/etc/umurmur/umurmurd.conf <<EOF
certificate = "${certfile}";
private_key = "${keyfile}";
certificate = "/ssl/${certfile}";
private_key = "/ssl/${keyfile}";
EOF
fi