Django / file uploads permissions
Try this in your settings.py if you use Python 2:
FILE_UPLOAD_PERMISSIONS = 0644
In Python 3 octal numbers must start with 0o so the line would be:
FILE_UPLOAD_PERMISSIONS = 0o644
For more details see the documentation.