I gave an example of running a React app[1]
[1]: https://www.toptal.com/github/unlimited-scale-web-hosting-gi...
41–50 of 51 posts
I gave an example of running a React app[1]
[1]: https://www.toptal.com/github/unlimited-scale-web-hosting-gi...
The article's from December 2017 and you can see from the response headers that it's hosted on GitHub Pages again. There are plenty of gotchas when serving a static site via CloudFront. Let's say you have a page at example.com/foo/index.html. If you want it serve it from example.com/foo/ then you need to write a Lambda@Edge request function to handle the directory index — the article implies that CloudFront's default…
The only free hosted database that I am aware of is Mongo Atlas a 3 Node cluster with 500MB oh storage.
Your website doesn't have to be static to host it for free on AWS. You can do server side stuff with Lambda and if you can get away with the 128MB instance (easy enough to do for one function) you get 1 million request a month for free and 888 hours of processing time. ( https://aws.amazon.com/lambda/pricing/ ). The free tier for Lambda doesn't expire. The only free hosted database that I am aware of is Mongo Atlas a…
Earlier quoted context omitted.
Typically, you restrict countries that you receive abusive traffic from and do not have any business in. "Is that how you want the web to generally work?" My suggestions on ways to prevent paying for CloudFront charges from junk requests are not prescriptive. However, they are AWS best practices when dealing with DDoS. https://aws.amazon.com/answers/networking/aws-ddos-attack-mi...
Guess we're living very different lives on the same web. "do not have any business in." is not something I'm familiar with on the web, as the part of the web I love is the one without borders. But each to their own :)
For example, if I want to purchase southwest airline tickets, I have to use a VPN.
Earlier quoted context omitted.
Guess we're living very different lives on the same web. "do not have any business in." is not something I'm familiar with on the web, as the part of the web I love is the one without borders. But each to their own :)
As an American expat living in Vietnam, I find it annoying when companies decided they "do not have any business" where I live. For example, if I want to purchase southwest airline tickets, I have to use a VPN.
Off-topic but interesting anyways, I've noticed that people who move from the US to elsewhere, often call themselves "expats", while people who move from elsewhere to the US, are called "immigrants". Why is that?
Your website doesn't have to be static to host it for free on AWS. You can do server side stuff with Lambda and if you can get away with the 128MB instance (easy enough to do for one function) you get 1 million request a month for free and 888 hours of processing time. ( https://aws.amazon.com/lambda/pricing/ ). The free tier for Lambda doesn't expire. The only free hosted database that I am aware of is Mongo Atlas a…
But wouldn't ApiGateway will be more expensive than Cloudfront+S3?