Product

Product Features How to Compare Docs Screenshots Why

Start here

Getting started Download Guides Frequently asked questions

More

Security Support Roadmap About

MIT licensed, no tiers

A comprehensive open source load balancer

Not a demo, not an open core, not a free tier with the useful parts removed. Failover LB is a complete load balancer manager for nginx, given away under the MIT license, with the same features whether you run one node or ten.

What comprehensive actually means

Plenty of things call themselves an open source load balancer. Most of them will happily spread requests over a list of servers, which is the easy part. The gap between that and a site you can leave running shows up in the jobs nobody puts on the feature list.

The jobThe basic answerHere
Noticing a dead backendWait for a request to fail. A visitor found it first.Active probes on a schedule, with a body check so a server that returns 200 while broken is still caught.
Certificatescertbot on a timer, on the wrong node, failing quietly.Worked out per renewal, replicated to every node, four ways to get one.
A firewall for the appCompile ModSecurity yourself and go and find the rules.Installed fleet wide from a page, per site, with learning sessions so you tune it from real traffic.
Losing a whole serverNothing. DNS is somebody else's problem.Built in DNS failover that only hands out nodes that answer.
Two servers agreeingA person, a checklist and hope.Two phase apply. Nothing goes live unless every node validated it first.
Undoing a mistakeWhatever you remembered to put in version control.Every applied version stored with who and what, restored with one click.
A backend with no public addressA firewall ticket, or an address you did not want to expose.One command on that machine and it joins a pool through a tunnel.
Proving who changed whatShell history, if anybody looks.An audit log with the actor, the time and the source address.

The whole list

Forty six feature pages, each one saying what the thing is for, where it falls short and what to use instead when it is the wrong tool. Grouped by what you are trying to do:

Traffic

Certificates and TLS

Security

Fleet

Visibility

Built on nginx, not hiding it

nginx does the work. This drives it. Every site becomes a server block, every pool becomes an upstream, and the generated config is on screen at any time for you to read before it goes live. There is no proprietary data plane and no lock in, because the thing serving your traffic is the same nginx everybody else runs.

It is built from source with around eighty modules, which is considerably more than the distribution package carries, and it can be rebuilt from the GUI when you need one more. The module list says exactly what is compiled in.

What it does not do

A comprehensive tool that pretends to have no gaps is just an incomplete tool with better marketing. The honest list:

  • It is not a CDN. There are no edge locations, and DNS steering is not the same thing as serving from a city near your visitor.
  • There is no Kubernetes ingress controller. If your world is Kubernetes, use an ingress controller made for it.
  • There is no service mesh integration and no sidecar story.
  • There is no vendor to call at three in the morning. That is the real trade for the price.

The comparison pages go further, including where the paid products genuinely win.

Questions people ask

What makes it a comprehensive open source loadbalancer rather than a basic one?

Most free tools stop at spreading traffic over some servers. Going live needs more than that: certificates that renew themselves across a cluster, a firewall in front of the app, checks that find a broken backend before a visitor does, a way to fail a whole server over, an audit trail, and a way to put yesterday back. All of that is here and none of it is behind a paywall.

What license is it under?

MIT. You can read it, change it, run it commercially and never tell anybody. There is no contributor agreement designed to let somebody relicense your work later.

Is there a paid version?

No, and that is deliberate. There is no open core, no enterprise edition and no feature held back as a sales hook. A product with a paid tier has a reason to make the free tier annoying, and this one does not have that reason.

What does it not do?

It is not a CDN, so it does not have points of presence around the world. It does not do layer 7 traffic shaping across data centers beyond DNS steering. It has no service mesh integration and no Kubernetes ingress controller. If you need those, use something else and do not let anybody sell you this instead.

How do I get support with no vendor?

The documentation, the searchable how to section and the guides are written to answer the questions rather than to sell a support contract. Beyond that it is the issue tracker. That is an honest trade and it is worth knowing about before you depend on it.

Read the code before you trust it

Ubuntu 22.04 or newer, root access, and about twenty minutes. The installer does the rest and it is safe to run twice.