From 9fc62ea21aa1c6dd979d10677b92e8ad5d93c4dc Mon Sep 17 00:00:00 2001 From: _94gsc Date: Thu, 18 Oct 2018 16:42:27 +0530 Subject: [PATCH] Provide link to S3 documentation (#19730) Also, update buket to bucket. --- .../index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/pages/guide/english/miscellaneous/guide-to-store-media-files-of-django-app-to-aws-s3/index.md b/client/src/pages/guide/english/miscellaneous/guide-to-store-media-files-of-django-app-to-aws-s3/index.md index 4422103dc6..3d916de3ba 100644 --- a/client/src/pages/guide/english/miscellaneous/guide-to-store-media-files-of-django-app-to-aws-s3/index.md +++ b/client/src/pages/guide/english/miscellaneous/guide-to-store-media-files-of-django-app-to-aws-s3/index.md @@ -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' -``` \ No newline at end of file +```