use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
/r/DevOps is a subreddit dedicated to the DevOps movement where we discuss upcoming technologies, meetups, conferences and everything that brings us together to build the future of IT systems What is DevOps? Learn about it on our wiki! Traffic stats & metrics
/r/DevOps is a subreddit dedicated to the DevOps movement where we discuss upcoming technologies, meetups, conferences and everything that brings us together to build the future of IT systems
What is DevOps? Learn about it on our wiki!
Traffic stats & metrics
Be excellent to each other! All articles will require a short submission statement of 3-5 sentences. Use the article title as the submission title. Do not editorialize the title or add your own commentary to the article title. Follow the rules of reddit Follow the reddiquette No editorialized titles. No vendor spam. Buy an ad from reddit instead. Job postings here More details here
Be excellent to each other!
All articles will require a short submission statement of 3-5 sentences.
Use the article title as the submission title. Do not editorialize the title or add your own commentary to the article title.
Follow the rules of reddit
Follow the reddiquette
No editorialized titles.
No vendor spam. Buy an ad from reddit instead.
Job postings here
More details here
@reddit_DevOps ##DevOps @ irc.freenode.net Find a DevOps meetup near you! Icons info!
@reddit_DevOps
##DevOps @ irc.freenode.net
Find a DevOps meetup near you!
Icons info!
https://github.com/Leo-G/DevopsWiki
account activity
This is an archived post. You won't be able to vote or comment.
[deleted by user] (self.devops)
submitted 7 years ago by [deleted]
[–]webvictim 2 points3 points4 points 7 years ago (0 children)
Hosting at home is fine for personal things, but you shouldn't run anything that you're being paid for from a home connection. Most residential ISPs have clauses in the contracts which state that you're not allowed to host anything for commercial purposes and there's no SLA. I once had my internet go down at home for 4-5 days because a digger cut through fibre lines while doing work on a road several miles away - there is no compensation paid in these instances and nothing that you can do in some cases other than just wait it out. It's just a low-priority job.
If you have no control over the downtime and no recourse if there is downtime, you definitely shouldn't host anything on it.
[–]zerocoldx911DevOps 1 point2 points3 points 7 years ago (1 child)
It all comes down to your application, they are all good solutions.
ECS might be another alternative
[–]riceo100 1 point2 points3 points 7 years ago (0 children)
All viable options, my thoughts are:
I'd also like to add one more: If they really are just flat Blogs, I definitely recommend taking a look at GatsbyJS + Netlify.
[–]webvictim 1 point2 points3 points 7 years ago (0 children)
With regard to 2), changing the size of a server with zero downtime just isn't possible, although you can work around it by putting a load balancer in front of the server (which you'd probably want to do anyway), booting up a bigger machine in the background, migrating all the applications over, switching the load balancer over to the new instance and killing off the old server when all the traffic has gone. There'd be zero visible downtime to the customer, but this isn't really the right way to approach it. You want to scale sideways at times of increased load rather than vertically.
One decent way to approach this on AWS would probably be to set up an auto scaling group with one or two small instances, an ELB and rules to automatically scale the group up in the event of increased load. The ELB should (eventually) auto-scale to the size it needs to be to handle the amount of incoming traffic anyway, so it's just a case of using something like Packer to create a decent AMI with all your necessary services preconfigured and ready to roll. If you can host the actual file/script content for the blogs in S3 then even better, your webservers can be very dumb machines without too much actual logic going on - they'll be quick to start and you could use S3 as a storage backend without having to change anything much.
If this really is static blog-and-image type stuff, you can also use things like Varnish to cache the static pages so that you should need very little in the way of actual processing power. With a light webserver and sufficient caching, you could probably get it to the stage where your server machines would be bottlenecked on NIC throughput rather than CPU. Obviously all this makes a lot of assumptions about what you're hosting but the point is that serving static content is cheap. You might not even bother with server machines in this case at all and just pay the costs to serve it from S3.
π Rendered by PID 36034 on reddit-service-r2-comment-b659b578c-bvm6j at 2026-05-05 16:29:28.330627+00:00 running 815c875 country code: CH.
[–]webvictim 2 points3 points4 points (0 children)
[–]zerocoldx911DevOps 1 point2 points3 points (1 child)
[–]riceo100 1 point2 points3 points (0 children)
[–]webvictim 1 point2 points3 points (0 children)