These are my s3 configuration.
DEFAULT_FILE_STORAGE = 'doctocliq.utils.MediaRootS3BotoStorage'
STATICFILES_STORAGE = 'doctocliq.utils.StaticRootS3BotoStorage'
AWS_STORAGE_BUCKET_NAME = 'doctocliq'
S3DIRECT_REGION = 'us-west-2'
S3_URL = '//%s.s3.amazonaws.com/' % AWS_STORAGE_BUCKET_NAME
MEDIA_URL = '//%s.s3.amazonaws.com/media/' % AWS_STORAGE_BUCKET_NAME
MEDIA_ROOT = MEDIA_URL
STATIC_URL = S3_URL + 'static/'
ADMIN_MEDIA_PREFIX = STATIC_URL + 'admin/'
Uploaded all the static files to the bucket with collectstatic command, except images all the other static files are working, on local server there is no issue also. The site link is http://doctocliq-dev.us-west-2.elasticbeanstalk.com/. Hope some body can help me, thank you.