├── .gitattributes ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── SECURITY.md ├── renovate.json └── workflows │ ├── publish.yml │ └── reuse.yml ├── .gitignore ├── AUTHORS.md ├── COPYING ├── Dockerfile ├── LICENSES ├── AGPL-3.0-or-later.txt └── CC0-1.0.txt ├── README.md ├── REUSE.toml ├── haproxy.cfg.template ├── haproxy_ex_apps.cfg.template ├── healthcheck.sh ├── start.sh └── tests ├── conftest.py ├── misc.py └── test_basic.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/reuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/.github/workflows/reuse.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSES/AGPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/LICENSES/AGPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/REUSE.toml -------------------------------------------------------------------------------- /haproxy.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/haproxy.cfg.template -------------------------------------------------------------------------------- /haproxy_ex_apps.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/haproxy_ex_apps.cfg.template -------------------------------------------------------------------------------- /healthcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/healthcheck.sh -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/start.sh -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/tests/misc.py -------------------------------------------------------------------------------- /tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/docker-socket-proxy/HEAD/tests/test_basic.py --------------------------------------------------------------------------------