Allow local:// media backends

Fixes #77
This commit is contained in:
Andrew Godwin 2022-11-28 21:26:02 -07:00
parent a3bc7ff196
commit 7f838433ed

View file

@ -310,6 +310,11 @@ if SETUP.MEDIA_BACKEND:
if parsed.hostname is not None:
port = parsed.port or 443
AWS_S3_ENDPOINT_URL = f"https://{parsed.hostname}:{port}"
elif parsed.scheme == "local":
if not (MEDIA_ROOT and MEDIA_URL):
raise ValueError(
"You must provide MEDIA_ROOT and MEDIA_URL for a local media backend"
)
else:
raise ValueError(f"Unsupported media backend {parsed.scheme}")