Would setting up Amazon's CloudFront with a custom origin as an ec2 server have any performance increase to serving PHP with Apache? Basically serving all the dynamic content through CloudFront.

For reference all my static content is already being served through CloudFront on a seperate domain.

IF that is possible and provides a performance increase could you do something like CloudFront which routes to an Elastic LoadBalancer which routes to an EC2 instance which has nginx as a front (still have some static content not on cloudfront) which in turn routes all php to Apache's mod_php.

link|improve this question
feedback

1 Answer

You can't serve dynamic content through cloudfront well at all. Cloudfront doesn't accept POST requests, and it strips querystrings out of GET requests. Ref docs.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.