diff --git a/src/freedombone-utils-web b/src/freedombone-utils-web
index e93a30a7e61605ea33f1a1de27477eb30b4d9ce6..0949d71a7c26a62547be6a0219459513368ca841 100755
--- a/src/freedombone-utils-web
+++ b/src/freedombone-utils-web
@@ -199,7 +199,11 @@ function cert_exists {
     if [ -f /etc/ssl/certs/${1}.${cert_type} ]; then
         echo "1"
     else
-        echo "0"
+        if [ -f /etc/letsencrypt/live/${1}/fullchain.${cert_type} ]; then
+            echo "1"
+        else
+            echo "0"
+        fi
     fi
 }