├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── html └── gitplaceholder ├── nginx.conf ├── scripts ├── startup.py └── templates │ └── proxy.conf ├── sites-enabled └── gitplaceholder └── ssl └── gitplaceholder /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwyatt/docker-nginx-loadbalancer/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwyatt/docker-nginx-loadbalancer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwyatt/docker-nginx-loadbalancer/HEAD/README.md -------------------------------------------------------------------------------- /html/gitplaceholder: -------------------------------------------------------------------------------- 1 | Here so git picks up the directory. -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwyatt/docker-nginx-loadbalancer/HEAD/nginx.conf -------------------------------------------------------------------------------- /scripts/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwyatt/docker-nginx-loadbalancer/HEAD/scripts/startup.py -------------------------------------------------------------------------------- /scripts/templates/proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwyatt/docker-nginx-loadbalancer/HEAD/scripts/templates/proxy.conf -------------------------------------------------------------------------------- /sites-enabled/gitplaceholder: -------------------------------------------------------------------------------- 1 | Here so git picks up the directory. -------------------------------------------------------------------------------- /ssl/gitplaceholder: -------------------------------------------------------------------------------- 1 | Here so git picks up the dir. --------------------------------------------------------------------------------