Hacker News new | ask | show | jobs
by bot403 17 days ago
Not to mention losing load balancing and failover.
2 comments

Failover can be done with something like keepalived. VRRP/CARP are a thing.

For LB you'll need something in front of your service to bounce connections around, which is replacing one point of failure (DNS) for another (HAproxy, IPVS). Though I guess you can run the LB stack on your app service servers.

And making TLS more difficult, especially for HA systems. Guess you would just need one cert for 127.0.0.1 for all local services.
Certs support ip addresses? However, /etc/hosts would solve the issue probably, unless I’m missing something
What has /etc/hosts got to do with valid TLS certificates? I think that’s a non-sequitur.
You don't need to setup one cert for 127.0.0.1 as stated by the parent comment.