├── .dockerignore ├── Dockerfile ├── README.md └── files ├── app ├── Procfile ├── docker.yml ├── haproxy.conf ├── haproxy.erb ├── rproxy.rb ├── setup └── yaml.tmpl └── etc ├── haproxy ├── errors │ ├── 400.http │ ├── 403.http │ ├── 408.http │ ├── 500.http │ ├── 502.http │ ├── 503.http │ └── 504.http └── haproxy.cfg └── supervisord.conf /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .gitignore 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passcod/docker-rproxy/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passcod/docker-rproxy/HEAD/README.md -------------------------------------------------------------------------------- /files/app/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passcod/docker-rproxy/HEAD/files/app/Procfile -------------------------------------------------------------------------------- /files/app/docker.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | -------------------------------------------------------------------------------- /files/app/haproxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passcod/docker-rproxy/HEAD/files/app/haproxy.conf -------------------------------------------------------------------------------- /files/app/haproxy.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passcod/docker-rproxy/HEAD/files/app/haproxy.erb -------------------------------------------------------------------------------- /files/app/rproxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passcod/docker-rproxy/HEAD/files/app/rproxy.rb -------------------------------------------------------------------------------- /files/app/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passcod/docker-rproxy/HEAD/files/app/setup -------------------------------------------------------------------------------- /files/app/yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passcod/docker-rproxy/HEAD/files/app/yaml.tmpl -------------------------------------------------------------------------------- /files/etc/haproxy/errors/400.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passcod/docker-rproxy/HEAD/files/etc/haproxy/errors/400.http -------------------------------------------------------------------------------- /files/etc/haproxy/errors/403.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passcod/docker-rproxy/HEAD/files/etc/haproxy/errors/403.http -------------------------------------------------------------------------------- /files/etc/haproxy/errors/408.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passcod/docker-rproxy/HEAD/files/etc/haproxy/errors/408.http -------------------------------------------------------------------------------- /files/etc/haproxy/errors/500.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passcod/docker-rproxy/HEAD/files/etc/haproxy/errors/500.http -------------------------------------------------------------------------------- /files/etc/haproxy/errors/502.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passcod/docker-rproxy/HEAD/files/etc/haproxy/errors/502.http -------------------------------------------------------------------------------- /files/etc/haproxy/errors/503.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passcod/docker-rproxy/HEAD/files/etc/haproxy/errors/503.http -------------------------------------------------------------------------------- /files/etc/haproxy/errors/504.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passcod/docker-rproxy/HEAD/files/etc/haproxy/errors/504.http -------------------------------------------------------------------------------- /files/etc/haproxy/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passcod/docker-rproxy/HEAD/files/etc/haproxy/haproxy.cfg -------------------------------------------------------------------------------- /files/etc/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passcod/docker-rproxy/HEAD/files/etc/supervisord.conf --------------------------------------------------------------------------------