Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 391 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 391 Bytes

Simple Load Balancer

A simple load balancer using the Round Robin strategy. Just to play a little.

Usage

Args:

  --backends (string):
    - Backends to load balance, separated with commas.
  --port (int):
    - Port to serve (default 3030).

Example of use:

hostname@user:~$ simplelb --backends=http://localhost:5000,http://localhost:5001,http://localhost:5002