├── .dockerignore ├── .editorconfig ├── .gitignore ├── Dockerfile ├── README.md ├── balancer ├── composer.json ├── composer.lock ├── push-images.sh └── server.php /.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | !vendor/ 3 | !balancer -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftphp/tiny-load-balancer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM driftphp/base 2 | 3 | WORKDIR / 4 | 5 | COPY . . 6 | 7 | EXPOSE 8000 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftphp/tiny-load-balancer/HEAD/README.md -------------------------------------------------------------------------------- /balancer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftphp/tiny-load-balancer/HEAD/balancer -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftphp/tiny-load-balancer/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftphp/tiny-load-balancer/HEAD/composer.lock -------------------------------------------------------------------------------- /push-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftphp/tiny-load-balancer/HEAD/push-images.sh -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftphp/tiny-load-balancer/HEAD/server.php --------------------------------------------------------------------------------