I have obtained 5GB of disk space with a mount point to my Django app here:
/opt/render/project/src/msp-dashboard/media
These are my media settings within my django application:
MEDIA_ROOT = "/opt/render/project/src/msp-dashboard/media" # configuration for render
MEDIA_URL = '/media/'
When I look at the event logs, I see this /media/
directory is a 404
, yet when I access the storage location via shell, I see that the files exist. I am using django-tenants which serves the app to each tenant through postgres schema. App works completely fine on local. What am I overlooking?
404 Error in Logs:
I have read the disk docs, so please do not attach them.