Provide link to S3 documentation (#19730)

Also, update buket to bucket.
pull/19737/head
_94gsc 2018-10-18 16:42:27 +05:30 committed by Aditya
parent 4a6d1b49ff
commit 9fc62ea21a
1 changed files with 3 additions and 3 deletions

View File

@ -3,11 +3,11 @@ title: Django-file-storage
---
## Django Media Files and Static files Storage
#### Steps to create AWS S3 Bucket
#### Steps to create AWS S3 Bucket (More information on S3 [Visit Here!](https://docs.aws.amazon.com/AmazonS3/latest/gsg/GetStartedWithS3.html))
* Open aws console and create IAM user for S3 bucket
* In services select S3
* Create new S3 buket in S3 console
* Create new S3 bucket in S3 console
#### Steps to do in django app
@ -58,4 +58,4 @@ STATICFILES_STORAGE = 'storages.backends.s3boto3.S3Boto3Storage'
DEFAULT_FILE_STORAGE = 'mysite.storage_backends.MediaStorage'
```
```