php - If I host my web app in AWS Do I have to use S3 -
i have web application store images , videos.im using php.is make sense if use s3 instead of store in file server since both in aws ( web server , file storage)
yes. recommend. s3 object storage service provided aws. place store static files images/videos/css/javascript can serve directly without putting more load on servers. there many benefits if use s3,
- 99.999999999% durability , 99.99% availability of files
- scalability on demand
- provide file caching support integration of cloudfront - load files faster
- granular access management of files
- private content distribution cloudfront signed urls
- stream media cloudfront viewers across globe
- ability protect data encryption (eg: sse-s3, sse-kms)
- lifecycle management of files eg: archiving @ low cost
- easy set of disaster recovery cross region replication of files
you may use aws sdk php interact s3 server.
Comments
Post a Comment