此错误似乎是一个已知的问题,并未成为优先事项(请参阅https://github.com/boto/boto/pull/2718)。我使用2.39版本的boto和django-storages-redux
为我的媒体文件启用了S3。目前在boto/connection.py in proxy_ssl, line 796
收到错误。
我尝试用boto3替换boto,但这不适用于django-storages-redux。
有没有人找到通过SSL代理使用S3的替代方案?
当我说boto3不能用于django-storage时,因为存储/后端/ s3boto.py中的这些导入:
try:
from boto import __version__ as boto_version
from boto.s3.connection import S3Connection, SubdomainCallingFormat
from boto.exception import S3ResponseError
from boto.s3.key import Key as S3Key
from boto.utils import parse_ts, ISO8601
except ImportError:
raise ImproperlyConfigured("Could not load Boto's S3 bindings.\n"
"See https://github.com/boto/boto")