Disable SSL cert verification

This commit is contained in:
2025-07-08 12:09:42 +03:00
committed by Emin Arslan
parent e465497714
commit f63c204b12

View File

@ -34,6 +34,11 @@ from faafo import version
from libcloud.storage.types import Provider
from libcloud.storage.providers import get_driver
import libcloud.security
# Disable SSL verification.
# It would be better to add the certificate later.
libcloud.security.VERIFY_SSL_CERT = False
LOG = log.getLogger('faafo.api')
CONF = cfg.CONF