├── .gitattributes ├── Dockerfile ├── README.md ├── entrypoint.sh ├── haproxy ├── Dockerfile └── entrypoint.sh └── nginx ├── Dockerfile └── entrypoint.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | nginx/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justsml/ssl-proxy/HEAD/README.md -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- 1 | nginx/entrypoint.sh -------------------------------------------------------------------------------- /haproxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justsml/ssl-proxy/HEAD/haproxy/Dockerfile -------------------------------------------------------------------------------- /haproxy/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justsml/ssl-proxy/HEAD/haproxy/entrypoint.sh -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justsml/ssl-proxy/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justsml/ssl-proxy/HEAD/nginx/entrypoint.sh --------------------------------------------------------------------------------