django-storages と botoS3 を使用して django1.4 アプリケーションを開発しています。
私はこのようなモデルを持っています
class MyModel(models.Model):
image = models.ImageField(blank=True, null=True, upload_to='my_image')
イメージを公開したくないのですが、django-storage が自動的にファイル許可を public (Grantee : Everyone Open/Download) に設定しました。
権限を非公開に自動設定する方法を教えてください。ありがとう!