MEDIA_ROOT = os.path.join(BASE_DIR, "media")
MEDIA_URL = "/<folder name>/"
MEDIA_ROOT and STATIC_ROOT must have different values.
Before STATIC_ROOT was introduced, it was common to rely or
fallback on MEDIA_ROOT to also serve static files; however,
since this can have serious security implications,
there is a validation check to prevent it.