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,

  1. 99.999999999% durability , 99.99% availability of files
  2. scalability on demand
  3. provide file caching support integration of cloudfront - load files faster
  4. granular access management of files
  5. private content distribution cloudfront signed urls
  6. stream media cloudfront viewers across globe
  7. ability protect data encryption (eg: sse-s3, sse-kms)
  8. lifecycle management of files eg: archiving @ low cost
  9. easy set of disaster recovery cross region replication of files

you may use aws sdk php interact s3 server.


Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -