├── README ├── Rakefile ├── bin └── haproxy_join └── examples ├── README ├── build.sh └── haproxy ├── conf ├── backend.d │ ├── 2backendd.cfg │ └── backendd.cfg ├── defaults.cfg ├── frontend.cfg ├── frontend.d │ ├── 2frontendd.cfg │ └── frontendd.cfg ├── global.cfg └── haproxy.cfg └── haproxy.cfg /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewilliams/haproxy_join/HEAD/README -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewilliams/haproxy_join/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/haproxy_join: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewilliams/haproxy_join/HEAD/bin/haproxy_join -------------------------------------------------------------------------------- /examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewilliams/haproxy_join/HEAD/examples/README -------------------------------------------------------------------------------- /examples/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewilliams/haproxy_join/HEAD/examples/build.sh -------------------------------------------------------------------------------- /examples/haproxy/conf/backend.d/2backendd.cfg: -------------------------------------------------------------------------------- 1 | #2backendd 2 | -------------------------------------------------------------------------------- /examples/haproxy/conf/backend.d/backendd.cfg: -------------------------------------------------------------------------------- 1 | #backendd 2 | -------------------------------------------------------------------------------- /examples/haproxy/conf/defaults.cfg: -------------------------------------------------------------------------------- 1 | #defaults 2 | -------------------------------------------------------------------------------- /examples/haproxy/conf/frontend.cfg: -------------------------------------------------------------------------------- 1 | #frontend 2 | -------------------------------------------------------------------------------- /examples/haproxy/conf/frontend.d/2frontendd.cfg: -------------------------------------------------------------------------------- 1 | #2frontendd 2 | -------------------------------------------------------------------------------- /examples/haproxy/conf/frontend.d/frontendd.cfg: -------------------------------------------------------------------------------- 1 | #frontendd 2 | -------------------------------------------------------------------------------- /examples/haproxy/conf/global.cfg: -------------------------------------------------------------------------------- 1 | #global 2 | -------------------------------------------------------------------------------- /examples/haproxy/conf/haproxy.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/haproxy/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewilliams/haproxy_join/HEAD/examples/haproxy/haproxy.cfg --------------------------------------------------------------------------------