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.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…