allow https

This commit is contained in:
CEF Server 2025-03-19 00:05:43 +00:00
parent 861c672910
commit f3b9ea9e16
2 changed files with 3 additions and 1 deletions

View file

@ -32,7 +32,7 @@ async def SHA256(f: UploadFile) -> str:
minioClient = Minio(
config.MINIO_INTERNAL_ADDR,
secure=False, # you will probably not have SSL
secure=config.MINIO_INTERNAL_SECURE, # you will probably not have SSL
access_key=config.MINIO_ACCESS_KEY,
secret_key=config.MINIO_SECRET_KEY,
)