├── .circleci └── config.yml ├── .codacy.yml ├── .dockerignore ├── .editorconfig ├── .fossa.yml ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── linters │ ├── .dockerfilelintrc │ ├── .ecrc │ ├── .hadolint.yml │ └── .markdown-lint.yml ├── .gitignore ├── .readthedocs.yaml ├── Dockerfile ├── LICENSE.md ├── Makefile ├── README.md ├── SECURITY.md ├── bin ├── benchmark.sh ├── common.py ├── docker-build.py ├── docker-bundle.py ├── docker-metadata.py ├── docker-push.py ├── generate-changelog.sh ├── generate-deps-env.py ├── generate-dockerfiles.py ├── generate-supported-versions.py ├── generate_tags.py ├── package-base-nginx.sh ├── package-test-base.sh ├── readme-tags.py ├── requirements.txt ├── templates │ └── deps-env.template ├── test-lint.sh ├── test-security.sh ├── test.sh └── update-readme.sh ├── docker-compose.test.yml ├── docs ├── BENCHMARKS.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEV.md ├── LICENSE.md ├── README.md ├── RESTY.md ├── TAGS.md ├── benchmarks │ └── reports │ │ ├── different_images │ │ ├── artillery.nginx-lua.1.txt │ │ ├── artillery.nginx-lua.2.txt │ │ ├── artillery.nginx-lua.3.txt │ │ ├── artillery.nginx-lua.4.txt │ │ ├── artillery.nginx-lua.5.txt │ │ ├── artillery.nginx.1.txt │ │ ├── artillery.nginx.2.txt │ │ ├── artillery.nginx.3.txt │ │ ├── artillery.nginx.4.txt │ │ ├── artillery.nginx.5.txt │ │ ├── artillery.openresty.1.txt │ │ ├── artillery.openresty.2.txt │ │ ├── artillery.openresty.3.txt │ │ ├── artillery.openresty.4.txt │ │ └── artillery.openresty.5.txt │ │ └── distros │ │ ├── artillery.alpine.1.txt │ │ ├── artillery.alpine.2.txt │ │ ├── artillery.alpine.3.txt │ │ ├── artillery.alpine.4.txt │ │ ├── artillery.alpine.5.txt │ │ ├── artillery.centos.1.txt │ │ ├── artillery.centos.2.txt │ │ ├── artillery.centos.3.txt │ │ ├── artillery.centos.4.txt │ │ ├── artillery.centos.5.txt │ │ ├── artillery.debian.1.txt │ │ ├── artillery.debian.2.txt │ │ ├── artillery.debian.3.txt │ │ ├── artillery.debian.4.txt │ │ ├── artillery.debian.5.txt │ │ ├── artillery.fedora.1.txt │ │ ├── artillery.fedora.2.txt │ │ ├── artillery.fedora.3.txt │ │ ├── artillery.fedora.4.txt │ │ ├── artillery.fedora.5.txt │ │ ├── artillery.ubuntu.1.txt │ │ ├── artillery.ubuntu.2.txt │ │ ├── artillery.ubuntu.3.txt │ │ ├── artillery.ubuntu.4.txt │ │ └── artillery.ubuntu.5.txt ├── examples │ ├── docker-compose.md │ ├── headers-more-nginx-module.md │ ├── lua-nginx-module.md │ ├── lua-resty-balancer.md │ ├── lua-resty-cookie.md │ ├── lua-resty-core.md │ ├── lua-resty-dns.md │ ├── lua-resty-limit-traffic.md │ ├── lua-resty-lock.md │ ├── lua-resty-lrucache.md │ ├── lua-resty-memcached.md │ ├── lua-resty-mysql.md │ ├── lua-resty-redis.md │ ├── lua-resty-shell.md │ ├── lua-resty-signal.md │ ├── lua-resty-string.md │ ├── lua-resty-upload.md │ ├── lua-resty-upstream-healthcheck.md │ ├── lua-resty-websocket.md │ ├── lua-tablepool.md │ ├── lua-upstream-nginx-module.md │ ├── nginx-lua-prometheus.md │ ├── set-misc-nginx-module.md │ └── stream-lua-nginx-module.md ├── logo-lua.png ├── logo-nginx.png ├── lua-nginx-module │ ├── DIRECTIVES.md │ ├── known-issues.md │ ├── lua_nginx_modules_directives.png │ └── nginx-api-for-lua.md └── metadata │ ├── 1.17.10-alpine3.10.5.md │ ├── 1.17.10-alpine3.11.6.md │ ├── 1.17.10-alpine3.12.0.md │ ├── 1.17.10-amazonlinux2.0.20200406.0.md │ ├── 1.17.10-amazonlinux2018.03.0.20200318.1.md │ ├── 1.17.10-centos7.8.2003.md │ ├── 1.17.10-centos8.2.2004.md │ ├── 1.17.10-debian10.4-slim.md │ ├── 1.17.10-debian8.11-slim.md │ ├── 1.17.10-debian9.12-slim.md │ ├── 1.17.10-fedora29.md │ ├── 1.17.10-fedora30.md │ ├── 1.17.10-fedora31.md │ ├── 1.17.10-ubuntu18.04.md │ ├── 1.17.10-ubuntu19.10.md │ ├── 1.17.10-ubuntu20.04.md │ ├── 1.18.0-alpine3.10.5.md │ ├── 1.18.0-alpine3.11.6.md │ ├── 1.18.0-alpine3.12.0.md │ ├── 1.18.0-amazonlinux2.0.20200406.0.md │ ├── 1.18.0-amazonlinux2018.03.0.20200318.1.md │ ├── 1.18.0-centos7.8.2003.md │ ├── 1.18.0-centos8.2.2004.md │ ├── 1.18.0-debian10.4-slim.md │ ├── 1.18.0-debian8.11-slim.md │ ├── 1.18.0-debian9.12-slim.md │ ├── 1.18.0-fedora29.md │ ├── 1.18.0-fedora30.md │ ├── 1.18.0-fedora31.md │ ├── 1.18.0-ubuntu18.04.md │ ├── 1.18.0-ubuntu19.10.md │ ├── 1.18.0-ubuntu20.04.md │ ├── 1.19.0-alpine3.10.5.md │ ├── 1.19.0-alpine3.11.6.md │ ├── 1.19.0-alpine3.12.0.md │ ├── 1.19.0-amazonlinux2.0.20200304.0.md │ ├── 1.19.0-amazonlinux2.0.20200406.0.md │ ├── 1.19.0-amazonlinux2018.03.0.20200318.1.md │ ├── 1.19.0-centos7.8.2003.md │ ├── 1.19.0-centos8.1.1911.md │ ├── 1.19.0-centos8.2.2004.md │ ├── 1.19.0-debian10.3-slim.md │ ├── 1.19.0-debian10.4-slim.md │ ├── 1.19.0-debian8.11-slim.md │ ├── 1.19.0-debian9.12-slim.md │ ├── 1.19.0-fedora29.md │ ├── 1.19.0-fedora30.md │ ├── 1.19.0-fedora31.md │ ├── 1.19.0-fedora32.md │ ├── 1.19.0-ubuntu18.04.md │ ├── 1.19.0-ubuntu19.10.md │ ├── 1.19.0-ubuntu20.04.md │ ├── 1.19.1-alpine3.11.6.md │ ├── 1.19.1-amazonlinux2.0.20200406.0.md │ ├── 1.19.1-centos8.1.1911.md │ ├── 1.19.1-debian10.3-slim.md │ ├── 1.19.1-fedora32.md │ ├── 1.19.1-ubuntu20.04.md │ ├── 1.19.10-alpine3.13.4.md │ ├── 1.19.10-alpine3.13.5.md │ ├── 1.19.10-amazonlinux2.0.20210326.0.md │ ├── 1.19.10-debian10.9.md │ ├── 1.19.10-fedora33.md │ ├── 1.19.10-ubuntu20.04.md │ ├── 1.19.2-alpine3.11.6.md │ ├── 1.19.2-amazonlinux2.0.20200602.0.md │ ├── 1.19.2-centos8.1.1911.md │ ├── 1.19.2-debian10.4-slim.md │ ├── 1.19.2-fedora33.md │ ├── 1.19.2-ubuntu20.04.md │ ├── 1.19.3-alpine3.11.6.md │ ├── 1.19.3-alpine3.12.0.md │ ├── 1.19.3-alpine3.12.1.md │ ├── 1.19.3-amazonlinux2.0.20200602.0.md │ ├── 1.19.3-amazonlinux2.0.20200722.0.md │ ├── 1.19.3-centos8.1.1911.md │ ├── 1.19.3-centos8.2.2004.md │ ├── 1.19.3-centos8.md │ ├── 1.19.3-debian10.5-slim.md │ ├── 1.19.3-debian10.6-slim.md │ ├── 1.19.3-debian10.6.md │ ├── 1.19.3-fedora33.md │ ├── 1.19.3-fedora34.md │ ├── 1.19.3-ubuntu20.04.md │ ├── 1.19.3-ubuntu20.10.md │ ├── 1.19.4-alpine3.12.1.md │ ├── 1.19.4-amazonlinux2.0.20200722.0.md │ ├── 1.19.4-centos8.md │ ├── 1.19.4-debian10.6.md │ ├── 1.19.4-fedora33.md │ ├── 1.19.4-ubuntu20.04.md │ ├── 1.19.5-alpine3.12.1.md │ ├── 1.19.5-alpine3.12.2.md │ ├── 1.19.5-amazonlinux2.0.20200722.0.md │ ├── 1.19.5-centos8.md │ ├── 1.19.5-debian10.6.md │ ├── 1.19.5-debian10.7.md │ ├── 1.19.5-fedora33.md │ ├── 1.19.5-ubuntu20.04.md │ ├── 1.19.6-alpine3.12.2.md │ ├── 1.19.6-alpine3.12.3.md │ ├── 1.19.6-alpine3.13.0.md │ ├── 1.19.6-alpine3.13.1.md │ ├── 1.19.6-amazonlinux2.0.20200722.0.md │ ├── 1.19.6-amazonlinux2.0.20201111.0.md │ ├── 1.19.6-amazonlinux2.0.20201218.1.md │ ├── 1.19.6-amazonlinux2.0.20210126.0.md │ ├── 1.19.6-centos8.md │ ├── 1.19.6-debian10.7.md │ ├── 1.19.6-debian10.8.md │ ├── 1.19.6-fedora33.md │ ├── 1.19.6-ubuntu20.04.md │ ├── 1.19.7-alpine3.13.2.md │ ├── 1.19.7-amazonlinux2.0.20210126.0.md │ ├── 1.19.7-amazonlinux2.0.20210219.0.md │ ├── 1.19.7-debian10.8.md │ ├── 1.19.7-fedora33.md │ ├── 1.19.7-ubuntu20.04.md │ ├── 1.19.8-alpine3.13.2.md │ ├── 1.19.8-alpine3.13.3.md │ ├── 1.19.8-amazonlinux2.0.20210219.0.md │ ├── 1.19.8-debian10.8.md │ ├── 1.19.8-fedora33.md │ ├── 1.19.8-ubuntu20.04.md │ ├── 1.19.9-alpine3.13.3.md │ ├── 1.19.9-alpine3.13.4.md │ ├── 1.19.9-amazonlinux2.0.20210326.0.md │ ├── 1.19.9-debian10.9.md │ ├── 1.19.9-fedora33.md │ ├── 1.19.9-ubuntu20.04.md │ ├── 1.20.0-alpine3.13.5.md │ ├── 1.20.0-amazonlinux2.0.20210326.0.md │ ├── 1.20.0-amazonlinux2.0.20210421.0.md │ ├── 1.20.0-debian10.9.md │ ├── 1.20.0-fedora33.md │ ├── 1.20.0-fedora34.md │ ├── 1.20.0-ubuntu20.04.md │ ├── 1.21.0-alpine3.13.5.md │ ├── 1.21.0-alpine3.14.0.md │ ├── 1.21.0-amazonlinux2.0.20210421.0.md │ ├── 1.21.0-amazonlinux2.0.20210525.0.md │ ├── 1.21.0-amazonlinux2.0.20210617.0.md │ ├── 1.21.0-debian10.10.md │ ├── 1.21.0-debian10.9.md │ ├── 1.21.0-fedora34.md │ ├── 1.21.0-ubuntu20.04.md │ ├── 1.21.1-alpine3.14.0.md │ ├── 1.21.1-alpine3.14.1.md │ ├── 1.21.1-alpine3.14.2.md │ ├── 1.21.1-amazonlinux2.0.20210617.0.md │ ├── 1.21.1-amazonlinux2.0.20210701.0.md │ ├── 1.21.1-amazonlinux2.0.20210721.2.md │ ├── 1.21.1-amazonlinux2.0.20210813.1.md │ ├── 1.21.1-debian10.10.md │ ├── 1.21.1-debian11.0.md │ ├── 1.21.1-fedora34.md │ ├── 1.21.1-ubuntu20.04.md │ ├── 1.21.3-alpine3.14.2.md │ ├── 1.21.3-amazonlinux2.0.20210813.1.md │ ├── 1.21.3-amazonlinux2.0.20211001.0.md │ ├── 1.21.3-amazonlinux2.0.20211005.0.md │ ├── 1.21.3-debian11.0.md │ ├── 1.21.3-debian11.1.md │ ├── 1.21.3-fedora34.md │ ├── 1.21.3-fedora35.md │ ├── 1.21.3-ubuntu20.04.md │ ├── 1.21.4-alpine3.14.2.md │ ├── 1.21.4-alpine3.14.3.md │ ├── 1.21.4-alpine3.15.0.md │ ├── 1.21.4-amazonlinux2.0.20211005.0.md │ ├── 1.21.4-amazonlinux2.0.20211201.0.md │ ├── 1.21.4-debian11.1.md │ ├── 1.21.4-debian11.2.md │ ├── 1.21.4-fedora35.md │ ├── 1.21.4-ubuntu20.04.md │ ├── 1.21.5-alpine3.15.0.md │ ├── 1.21.5-amazonlinux2.0.20211223.0.md │ ├── 1.21.5-debian11.2.md │ ├── 1.21.5-fedora35.md │ ├── 1.21.5-ubuntu20.04.md │ ├── 1.21.6-alpine3.15.0.md │ ├── 1.21.6-alpine3.15.1.md │ ├── 1.21.6-alpine3.15.2.md │ ├── 1.21.6-alpine3.15.3.md │ ├── 1.21.6-alpine3.15.4.md │ ├── 1.21.6-alpine3.15.md │ ├── 1.21.6-alpine3.16.0.md │ ├── 1.21.6-amazonlinux2.0.20211223.0.md │ ├── 1.21.6-amazonlinux2.0.20220121.0.md │ ├── 1.21.6-amazonlinux2.0.20220218.1.md │ ├── 1.21.6-amazonlinux2.0.20220316.0.md │ ├── 1.21.6-amazonlinux2.0.20220406.1.md │ ├── 1.21.6-amazonlinux2.0.20220419.0.md │ ├── 1.21.6-amazonlinux2.0.20220426.0.md │ ├── 1.21.6-debian11.2.md │ ├── 1.21.6-debian11.3.md │ ├── 1.21.6-fedora35.md │ ├── 1.21.6-ubuntu20.04.md │ ├── 1.21.6-ubuntu22.04.md │ ├── 1.22.0-alpine3.16.0.md │ ├── 1.22.0-amazonlinux2.0.20220426.0.md │ ├── 1.22.0-amazonlinux2.0.20220606.1.md │ ├── 1.22.0-debian11.3.md │ ├── 1.22.0-ubuntu22.04.md │ ├── 1.23.1-fedora36.md │ ├── 1.23.3-almalinux8.7-20221201.md │ ├── 1.23.3-alpine3.17.0.md │ ├── 1.23.3-ubuntu22.04.md │ ├── 1.23.4-almalinux8.7-20230222.md │ ├── 1.23.4-alpine3.17.3.md │ ├── 1.23.4-amazonlinux2023.0.20230322.0.md │ ├── 1.23.4-debian11.6.md │ ├── 1.23.4-fedora37.md │ ├── 1.23.4-ubuntu22.04.md │ ├── 1.25.3-almalinux9.2-20230718.md │ ├── 1.25.3-almalinux9.3-20231124.md │ ├── 1.25.3-alpine3.18.4.md │ ├── 1.25.3-alpine3.18.5.md │ ├── 1.25.3-alpine3.19.0.md │ ├── 1.25.3-alpine3.19.1.md │ ├── 1.25.3-amazonlinux2023.2.20231026.0.md │ ├── 1.25.3-amazonlinux2023.2.20231113.0.md │ ├── 1.25.3-amazonlinux2023.3.20231211.4.md │ ├── 1.25.3-amazonlinux2023.3.20231218.0.md │ ├── 1.25.3-amazonlinux2023.3.20240108.0.md │ ├── 1.25.3-amazonlinux2023.3.20240131.0.md │ ├── 1.25.3-debian12.2.md │ ├── 1.25.3-debian12.4.md │ ├── 1.25.3-debian12.5.md │ ├── 1.25.3-fedora39.md │ ├── 1.25.3-ubuntu22.04.md │ ├── 1.25.4-almalinux9.3-20231124.md │ ├── 1.25.4-almalinux9.3-20240410.md │ ├── 1.25.4-alpine3.19.1.md │ ├── 1.25.4-amazonlinux2023.3.20240304.0.md │ ├── 1.25.4-amazonlinux2023.3.20240312.0.md │ ├── 1.25.4-amazonlinux2023.4.20240401.1.md │ ├── 1.25.4-debian12.5.md │ ├── 1.25.4-fedora39.md │ ├── 1.25.4-ubuntu22.04.md │ ├── 1.27.0-almalinux9.4-20240530.md │ ├── 1.27.0-almalinux9.4-20240723.md │ ├── 1.27.0-alpine3.20.0.md │ ├── 1.27.0-alpine3.20.1.md │ ├── 1.27.0-alpine3.20.2.md │ ├── 1.27.0-amazonlinux2023.4.20240528.0.md │ ├── 1.27.0-amazonlinux2023.4.20240611.0.md │ ├── 1.27.0-amazonlinux2023.5.20240701.0.md │ ├── 1.27.0-amazonlinux2023.5.20240708.0.md │ ├── 1.27.0-amazonlinux2023.5.20240722.0.md │ ├── 1.27.0-amazonlinux2023.5.20240730.0.md │ ├── 1.27.0-amazonlinux2023.5.20240805.0.md │ ├── 1.27.0-debian12.5.md │ ├── 1.27.0-debian12.6.md │ ├── 1.27.0-fedora40.md │ ├── 1.27.0-ubuntu24.04.md │ ├── 1.27.1-almalinux9.4-20240723.md │ ├── 1.27.1-almalinux9.4-20240923.md │ ├── 1.27.1-alpine3.20.2.md │ ├── 1.27.1-alpine3.20.3.md │ ├── 1.27.1-amazonlinux2023.5.20240805.0.md │ ├── 1.27.1-amazonlinux2023.5.20240819.0.md │ ├── 1.27.1-amazonlinux2023.5.20240903.0.md │ ├── 1.27.1-amazonlinux2023.5.20240916.0.md │ ├── 1.27.1-debian12.6.md │ ├── 1.27.1-debian12.7.md │ ├── 1.27.1-fedora40.md │ ├── 1.27.1-ubuntu24.04.md │ ├── 1.27.2-almalinux9.4-20240923.md │ ├── 1.27.2-almalinux9.5-20241118.md │ ├── 1.27.2-alpine3.20.3.md │ ├── 1.27.2-amazonlinux2023.5.20240916.0.md │ ├── 1.27.2-amazonlinux2023.5.20241001.1.md │ ├── 1.27.2-amazonlinux2023.6.20241010.0.md │ ├── 1.27.2-amazonlinux2023.6.20241031.0.md │ ├── 1.27.2-amazonlinux2023.6.20241111.0.md │ ├── 1.27.2-debian12.7.md │ ├── 1.27.2-debian12.8.md │ ├── 1.27.2-fedora40.md │ ├── 1.27.2-fedora41.md │ ├── 1.27.2-ubuntu24.04.md │ ├── 1.27.3-almalinux9.5-20241118.md │ ├── 1.27.3-alpine3.20.3.md │ ├── 1.27.3-alpine3.21.0.md │ ├── 1.27.3-alpine3.21.2.md │ ├── 1.27.3-amazonlinux2023.6.20241111.0.md │ ├── 1.27.3-amazonlinux2023.6.20241121.0.md │ ├── 1.27.3-amazonlinux2023.6.20241212.0.md │ ├── 1.27.3-amazonlinux2023.6.20250107.0.md │ ├── 1.27.3-debian12.8.md │ ├── 1.27.3-debian12.9.md │ ├── 1.27.3-fedora41.md │ ├── 1.27.3-ubuntu24.04.md │ ├── 1.27.4-almalinux9.5-20241118.md │ ├── 1.27.4-almalinux9.5-20250307.md │ ├── 1.27.4-almalinux9.5-20250411.md │ ├── 1.27.4-alpine3.21.2.md │ ├── 1.27.4-alpine3.21.3.md │ ├── 1.27.4-amazonlinux2023.6.20250128.0.md │ ├── 1.27.4-amazonlinux2023.6.20250203.1.md │ ├── 1.27.4-amazonlinux2023.6.20250218.2.md │ ├── 1.27.4-amazonlinux2023.6.20250303.0.md │ ├── 1.27.4-amazonlinux2023.6.20250317.2.md │ ├── 1.27.4-amazonlinux2023.7.20250331.0.md │ ├── 1.27.4-debian12.10.md │ ├── 1.27.4-debian12.9.md │ ├── 1.27.4-fedora41.md │ ├── 1.27.4-ubuntu24.04.md │ ├── 1.27.5-almalinux9.5-20250411.md │ ├── 1.27.5-almalinux9.6-20250527.md │ ├── 1.27.5-almalinux9.6-20250611.md │ ├── 1.27.5-alpine3.21.3.md │ ├── 1.27.5-alpine3.22.0.md │ ├── 1.27.5-amazonlinux2023.7.20250414.0.md │ ├── 1.27.5-amazonlinux2023.7.20250428.1.md │ ├── 1.27.5-amazonlinux2023.7.20250512.0.md │ ├── 1.27.5-amazonlinux2023.7.20250609.0.md │ ├── 1.27.5-debian12.10.md │ ├── 1.27.5-debian12.11.md │ ├── 1.27.5-fedora42.md │ ├── 1.27.5-ubuntu24.04.md │ ├── 1.28.0-almalinux9.6-20250803.md │ ├── 1.28.0-almalinux9.6-20250825.md │ ├── 1.28.0-almalinux9.6-20250909.md │ ├── 1.28.0-almalinux9.7-20251119.md │ ├── 1.28.0-alpine3.22.1.md │ ├── 1.28.0-alpine3.22.2.md │ ├── 1.28.0-amazonlinux2023.8.20250715.0.md │ ├── 1.28.0-amazonlinux2023.8.20250808.1.md │ ├── 1.28.0-amazonlinux2023.8.20250818.0.md │ ├── 1.28.0-amazonlinux2023.8.20250908.0.md │ ├── 1.28.0-amazonlinux2023.9.20250929.0.md │ ├── 1.28.0-amazonlinux2023.9.20251027.0.md │ ├── 1.28.0-amazonlinux2023.9.20251105.0.md │ ├── 1.28.0-amazonlinux2023.9.20251110.1.md │ ├── 1.28.0-amazonlinux2023.9.20251117.1.md │ ├── 1.28.0-debian12.11.md │ ├── 1.28.0-debian13.0.md │ ├── 1.28.0-debian13.1.md │ ├── 1.28.0-debian13.2.md │ ├── 1.28.0-fedora42.md │ ├── 1.28.0-ubuntu24.04.md │ ├── 1.29.0-almalinux9.6-20250611.md │ ├── 1.29.0-almalinux9.6-20250709.md │ ├── 1.29.0-almalinux9.6-20250712.md │ ├── 1.29.0-almalinux9.6-20250803.md │ ├── 1.29.0-alpine3.22.0.md │ ├── 1.29.0-alpine3.22.1.md │ ├── 1.29.0-amazonlinux2023.7.20250609.0.md │ ├── 1.29.0-amazonlinux2023.7.20250623.1.md │ ├── 1.29.0-amazonlinux2023.8.20250715.0.md │ ├── 1.29.0-debian12.11.md │ ├── 1.29.0-fedora42.md │ ├── 1.29.0-ubuntu24.04.md │ ├── 1.29.1-almalinux9.6-20250803.md │ ├── 1.29.1-almalinux9.6-20250825.md │ ├── 1.29.1-almalinux9.6-20250909.md │ ├── 1.29.1-alpine3.22.1.md │ ├── 1.29.1-amazonlinux2023.8.20250808.1.md │ ├── 1.29.1-amazonlinux2023.8.20250818.0.md │ ├── 1.29.1-amazonlinux2023.8.20250908.0.md │ ├── 1.29.1-amazonlinux2023.9.20250929.0.md │ ├── 1.29.1-debian13.0.md │ ├── 1.29.1-debian13.1.md │ ├── 1.29.1-fedora42.md │ ├── 1.29.1-ubuntu24.04.md │ ├── 1.29.2-almalinux9.6-20250909.md │ ├── 1.29.2-alpine3.22.1.md │ ├── 1.29.2-alpine3.22.2.md │ ├── 1.29.2-amazonlinux2023.9.20250929.0.md │ ├── 1.29.2-debian13.1.md │ ├── 1.29.2-fedora42.md │ ├── 1.29.2-ubuntu24.04.md │ ├── 1.29.3-almalinux9.6-20250909.md │ ├── 1.29.3-almalinux9.7-20251119.md │ ├── 1.29.3-alpine3.22.2.md │ ├── 1.29.3-amazonlinux2023.9.20250929.0.md │ ├── 1.29.3-amazonlinux2023.9.20251027.0.md │ ├── 1.29.3-amazonlinux2023.9.20251105.0.md │ ├── 1.29.3-amazonlinux2023.9.20251110.1.md │ ├── 1.29.3-amazonlinux2023.9.20251117.1.md │ ├── 1.29.3-debian13.1.md │ ├── 1.29.3-debian13.2.md │ ├── 1.29.3-fedora42.md │ └── 1.29.3-ubuntu24.04.md ├── fossa-deps.yml ├── mkdocs.yml ├── nginx ├── 1.17.10 │ ├── alpine │ │ ├── 3.10.5 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── nginx.conf │ │ ├── 3.11.5 │ │ │ └── Dockerfile │ │ ├── 3.11.6 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── nginx.conf │ │ └── 3.12.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ └── nginx.conf │ ├── amazonlinux │ │ ├── 2.0.20180622.1 │ │ │ └── Dockerfile │ │ ├── 2.0.20180827 │ │ │ └── Dockerfile │ │ ├── 2.0.20181010 │ │ │ └── Dockerfile │ │ ├── 2.0.20200406.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── nginx.conf │ │ └── 2018.03.0.20200318.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ └── nginx.conf │ ├── centos │ │ ├── 7.8.2003 │ │ │ └── Dockerfile │ │ ├── 8.1.1911 │ │ │ └── Dockerfile │ │ └── 8.2.2004 │ │ │ └── Dockerfile │ ├── debian │ │ ├── 10.2-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── Makefile │ │ ├── 10.3-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── Makefile │ │ ├── 10.4-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ └── nginx.conf │ │ ├── 8.11-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ └── nginx.conf │ │ └── 9.12-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── Makefile │ │ │ └── nginx.conf │ ├── fedora │ │ ├── 29 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ └── nginx.conf │ │ ├── 30 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ └── nginx.conf │ │ ├── 31 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ └── nginx.conf │ │ ├── 32 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── Makefile │ │ └── 33 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ └── Makefile │ └── ubuntu │ │ ├── 18.04 │ │ ├── Dockerfile │ │ └── tpl │ │ │ ├── Makefile │ │ │ └── nginx.conf │ │ ├── 19.10 │ │ ├── Dockerfile │ │ └── tpl │ │ │ ├── Makefile │ │ │ └── nginx.conf │ │ ├── 20.04 │ │ ├── Dockerfile │ │ └── tpl │ │ │ ├── Makefile │ │ │ └── nginx.conf │ │ └── 20.10 │ │ ├── Dockerfile │ │ └── tpl │ │ └── Makefile ├── 1.18.0 │ ├── alpine │ │ ├── 3.10.5 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── nginx.conf │ │ ├── 3.11.5 │ │ │ └── Dockerfile │ │ ├── 3.11.6 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── nginx.conf │ │ └── 3.12.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ └── nginx.conf │ ├── amazonlinux │ │ ├── 2.0.20180622.1 │ │ │ └── Dockerfile │ │ ├── 2.0.20180827 │ │ │ └── Dockerfile │ │ ├── 2.0.20181010 │ │ │ └── Dockerfile │ │ ├── 2.0.20200406.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── nginx.conf │ │ └── 2018.03.0.20200318.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ └── nginx.conf │ ├── centos │ │ ├── 7.8.2003 │ │ │ └── Dockerfile │ │ ├── 8.1.1911 │ │ │ └── Dockerfile │ │ └── 8.2.2004 │ │ │ └── Dockerfile │ ├── debian │ │ ├── 10.2-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── Makefile │ │ ├── 10.3-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── Makefile │ │ ├── 10.4-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ └── nginx.conf │ │ ├── 8.11-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ └── nginx.conf │ │ └── 9.12-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── Makefile │ │ │ └── nginx.conf │ ├── fedora │ │ ├── 29 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ └── nginx.conf │ │ ├── 30 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ └── nginx.conf │ │ ├── 31 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ └── nginx.conf │ │ ├── 32 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── Makefile │ │ └── 33 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ └── Makefile │ └── ubuntu │ │ ├── 18.04 │ │ ├── Dockerfile │ │ └── tpl │ │ │ ├── Makefile │ │ │ └── nginx.conf │ │ ├── 19.10 │ │ ├── Dockerfile │ │ └── tpl │ │ │ ├── Makefile │ │ │ └── nginx.conf │ │ ├── 20.04 │ │ ├── Dockerfile │ │ └── tpl │ │ │ ├── Makefile │ │ │ └── nginx.conf │ │ └── 20.10 │ │ ├── Dockerfile │ │ └── tpl │ │ └── Makefile ├── 1.19.0 │ ├── alpine │ │ ├── 3.10.5 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── nginx.conf │ │ ├── 3.11.5 │ │ │ └── Dockerfile │ │ ├── 3.11.6 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── nginx.conf │ │ └── 3.12.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ └── nginx.conf │ ├── amazonlinux │ │ ├── 2.0.20180622.1 │ │ │ └── Dockerfile │ │ ├── 2.0.20180827 │ │ │ └── Dockerfile │ │ ├── 2.0.20181010 │ │ │ └── Dockerfile │ │ ├── 2.0.20200304.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── nginx.conf │ │ ├── 2.0.20200406.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── nginx.conf │ │ └── 2018.03.0.20200318.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ └── nginx.conf │ ├── centos │ │ ├── 7.8.2003 │ │ │ └── Dockerfile │ │ ├── 8.1.1911 │ │ │ └── Dockerfile │ │ └── 8.2.2004 │ │ │ └── Dockerfile │ ├── debian │ │ ├── 10.2-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── Makefile │ │ ├── 10.3-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ └── nginx.conf │ │ ├── 10.4-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ └── nginx.conf │ │ ├── 8.11-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ └── nginx.conf │ │ └── 9.12-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── Makefile │ │ │ └── nginx.conf │ ├── fedora │ │ ├── 29 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ └── nginx.conf │ │ ├── 30 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ └── nginx.conf │ │ ├── 31 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ └── nginx.conf │ │ ├── 32 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ └── nginx.conf │ │ └── 33 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ └── Makefile │ └── ubuntu │ │ ├── 18.04 │ │ ├── Dockerfile │ │ └── tpl │ │ │ ├── Makefile │ │ │ └── nginx.conf │ │ ├── 19.10 │ │ ├── Dockerfile │ │ └── tpl │ │ │ ├── Makefile │ │ │ └── nginx.conf │ │ ├── 20.04 │ │ ├── Dockerfile │ │ └── tpl │ │ │ ├── Makefile │ │ │ └── nginx.conf │ │ └── 20.10 │ │ ├── Dockerfile │ │ └── tpl │ │ └── Makefile ├── 1.19.1 │ ├── alpine │ │ ├── 3.11.6 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── nginx.conf │ │ └── 3.12.0 │ │ │ └── Dockerfile │ ├── amazonlinux │ │ ├── 2.0.20200406.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── nginx.conf │ │ ├── 2.0.20200602.0 │ │ │ └── Dockerfile │ │ └── 2.0.20200722.0 │ │ │ └── Dockerfile │ ├── centos │ │ ├── 8.1.1911 │ │ │ └── Dockerfile │ │ └── 8.2.2004 │ │ │ └── Dockerfile │ ├── debian │ │ ├── 10.3-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ └── nginx.conf │ │ ├── 10.4-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── Makefile │ │ └── 10.5-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ └── Makefile │ ├── fedora │ │ ├── 32 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ └── nginx.conf │ │ └── 33 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ └── Makefile │ └── ubuntu │ │ ├── 20.04 │ │ ├── Dockerfile │ │ └── tpl │ │ │ ├── Makefile │ │ │ └── nginx.conf │ │ └── 20.10 │ │ ├── Dockerfile │ │ └── tpl │ │ └── Makefile ├── 1.19.10 │ ├── alpine │ │ ├── 3.13.4 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ └── 3.13.5 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── amazonlinux │ │ └── 2.0.20210326.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── debian │ │ └── 10.9 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── fedora │ │ └── 33 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ └── ubuntu │ │ └── 20.04 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ └── nginx.conf ├── 1.19.2 │ ├── alpine │ │ ├── 3.11.6 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── nginx.conf │ │ └── 3.12.0 │ │ │ └── Dockerfile │ ├── amazonlinux │ │ ├── 2.0.20200602.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── nginx.conf │ │ └── 2.0.20200722.0 │ │ │ └── Dockerfile │ ├── centos │ │ ├── 8.1.1911 │ │ │ └── Dockerfile │ │ └── 8.2.2004 │ │ │ └── Dockerfile │ ├── debian │ │ ├── 10.4-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ └── nginx.conf │ │ └── 10.5-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ └── Makefile │ ├── fedora │ │ ├── 32 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── Makefile │ │ ├── 33 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ └── nginx.conf │ │ └── 34 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ └── Makefile │ └── ubuntu │ │ ├── 20.04 │ │ ├── Dockerfile │ │ └── tpl │ │ │ ├── Makefile │ │ │ └── nginx.conf │ │ └── 20.10 │ │ ├── Dockerfile │ │ └── tpl │ │ └── Makefile ├── 1.19.3 │ ├── alpine │ │ ├── 3.11.6 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── nginx.conf │ │ ├── 3.12.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ └── 3.12.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── amazonlinux │ │ ├── 2.0.20200602.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ └── 2.0.20200722.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── centos │ │ ├── 8 │ │ │ └── Dockerfile │ │ ├── 8.1.1911 │ │ │ └── Dockerfile │ │ └── 8.2.2004 │ │ │ └── Dockerfile │ ├── debian │ │ ├── 10.4-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ └── Makefile │ │ ├── 10.5-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ ├── 10.6-slim │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── Makefile │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ └── 10.6 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── fedora │ │ ├── 33 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ └── 34 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── Makefile │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ └── ubuntu │ │ ├── 20.04 │ │ ├── Dockerfile │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ │ └── 20.10 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── Makefile │ │ ├── docker-entrypoint.sh │ │ └── nginx.conf ├── 1.19.4 │ ├── alpine │ │ └── 3.12.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── amazonlinux │ │ └── 2.0.20200722.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── centos │ │ └── 8 │ │ │ └── Dockerfile │ ├── debian │ │ └── 10.6 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── fedora │ │ └── 33 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ └── ubuntu │ │ └── 20.04 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── Makefile │ │ ├── docker-entrypoint.sh │ │ └── nginx.conf ├── 1.19.5 │ ├── alpine │ │ ├── 3.12.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ └── 3.12.2 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── amazonlinux │ │ └── 2.0.20200722.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── centos │ │ └── 8 │ │ │ └── Dockerfile │ ├── debian │ │ ├── 10.6 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ └── 10.7 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── fedora │ │ └── 33 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ └── ubuntu │ │ └── 20.04 │ │ ├── Dockerfile │ │ └── tpl │ │ └── Makefile ├── 1.19.6 │ ├── alpine │ │ ├── 3.12.2 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ ├── 3.12.3 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ ├── 3.13.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ └── 3.13.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── amazonlinux │ │ ├── 2.0.20200722.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ ├── 2.0.20201111.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ ├── 2.0.20201218.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ └── 2.0.20210126.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── centos │ │ └── 8 │ │ │ └── Dockerfile │ ├── debian │ │ ├── 10.7 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ └── 10.8 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── fedora │ │ └── 33 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ └── ubuntu │ │ └── 20.04 │ │ ├── Dockerfile │ │ └── tpl │ │ └── Makefile ├── 1.19.7 │ ├── alpine │ │ └── 3.13.2 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── amazonlinux │ │ ├── 2.0.20210126.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ └── 2.0.20210219.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── debian │ │ └── 10.8 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── fedora │ │ └── 33 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ └── ubuntu │ │ └── 20.04 │ │ ├── Dockerfile │ │ └── tpl │ │ └── Makefile ├── 1.19.8 │ ├── alpine │ │ ├── 3.13.2 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ └── 3.13.3 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── amazonlinux │ │ └── 2.0.20210219.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── debian │ │ └── 10.8 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── fedora │ │ └── 33 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ └── ubuntu │ │ └── 20.04 │ │ ├── Dockerfile │ │ └── tpl │ │ └── Makefile ├── 1.19.9 │ ├── alpine │ │ ├── 3.13.3 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ └── 3.13.4 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── amazonlinux │ │ └── 2.0.20210326.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── debian │ │ └── 10.9 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── fedora │ │ └── 33 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ └── ubuntu │ │ └── 20.04 │ │ ├── Dockerfile │ │ └── tpl │ │ └── Makefile ├── 1.20.0 │ ├── alpine │ │ └── 3.13.5 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── amazonlinux │ │ ├── 2.0.20210326.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ └── 2.0.20210421.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── debian │ │ └── 10.9 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── fedora │ │ ├── 33 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ └── 34 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ └── ubuntu │ │ └── 20.04 │ │ ├── Dockerfile │ │ └── tpl │ │ └── Makefile ├── 1.21.0 │ ├── alpine │ │ ├── 3.13.5 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ └── 3.14.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── amazonlinux │ │ ├── 2.0.20210421.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ ├── 2.0.20210525.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ └── 2.0.20210617.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── debian │ │ ├── 10.10 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ └── 10.9 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── fedora │ │ └── 34 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ └── ubuntu │ │ └── 20.04 │ │ ├── Dockerfile │ │ └── tpl │ │ └── Makefile ├── 1.21.1 │ ├── alpine │ │ ├── 3.14.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ ├── 3.14.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ └── 3.14.2 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── amazonlinux │ │ ├── 2.0.20210617.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ ├── 2.0.20210701.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ ├── 2.0.20210721.2 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ └── 2.0.20210813.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── debian │ │ ├── 10.10 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── nginx.conf │ │ └── 11.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ ├── fedora │ │ └── 34 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ └── nginx.conf │ └── ubuntu │ │ └── 20.04 │ │ ├── Dockerfile │ │ └── tpl │ │ └── Makefile ├── 1.21.3 │ ├── alpine │ │ └── 3.14.2 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2.0.20210813.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 2.0.20211001.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 2.0.20211005.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── debian │ │ ├── 11.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 11.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── fedora │ │ ├── 34 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 35 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ └── ubuntu │ │ └── 20.04 │ │ ├── Dockerfile │ │ └── tpl │ │ └── Makefile ├── 1.21.4 │ ├── alpine │ │ ├── 3.14.2 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 3.14.3 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 3.15.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2.0.20211005.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 2.0.20211201.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── debian │ │ ├── 11.1 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 11.2 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── fedora │ │ └── 35 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ └── ubuntu │ │ └── 20.04 │ │ ├── Dockerfile │ │ ├── Dockerfile-compat │ │ └── tpl │ │ └── Makefile ├── 1.21.5 │ ├── alpine │ │ └── 3.15.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2.0.20211201.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ └── Makefile │ │ └── 2.0.20211223.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── debian │ │ └── 11.2 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── fedora │ │ └── 35 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ └── ubuntu │ │ └── 20.04 │ │ ├── Dockerfile │ │ ├── Dockerfile-compat │ │ └── tpl │ │ └── Makefile ├── 1.21.6 │ ├── almalinux │ │ ├── 8.5-20211112 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 8.5-20220306 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 8.5-20220510 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 8.6-20220512 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── alpine │ │ ├── 3.15.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 3.15.1 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 3.15.2 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 3.15.3 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 3.15.4 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 3.15 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 3.16.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2.0.20211223.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 2.0.20220121.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 2.0.20220218.1 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 2.0.20220316.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 2.0.20220406.1 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 2.0.20220419.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 2.0.20220426.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── debian │ │ ├── 11.2 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 11.3 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── fedora │ │ ├── 35 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 36 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ └── ubuntu │ │ ├── 20.04 │ │ ├── Dockerfile │ │ ├── Dockerfile-compat │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ │ └── 22.04 │ │ ├── Dockerfile │ │ ├── Dockerfile-compat │ │ └── tpl │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ └── support.sh ├── 1.22.0 │ ├── almalinux │ │ └── 8.6-20220512 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── alpine │ │ └── 3.16.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2.0.20220426.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 2.0.20220606.1 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── debian │ │ └── 11.3 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── fedora │ │ └── 36 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ └── ubuntu │ │ └── 22.04 │ │ ├── Dockerfile │ │ ├── Dockerfile-compat │ │ └── tpl │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ └── support.sh ├── 1.23.0 │ ├── almalinux │ │ ├── 8.6-20220512 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 8.6-20220706 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── alpine │ │ ├── 3.16.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 3.16.1 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── amazonlinux │ │ └── 2.0.20220606.1 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── debian │ │ ├── 11.3 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 11.4 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── fedora │ │ └── 36 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ └── ubuntu │ │ └── 22.04 │ │ ├── Dockerfile │ │ ├── Dockerfile-compat │ │ └── tpl │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ └── support.sh ├── 1.23.1 │ ├── almalinux │ │ ├── 8.6-20220706 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 8.6-20220901 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 8.6-20221001 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── alpine │ │ ├── 3.16.1 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 3.16.2 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 2.0.20220606.1 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 2.0.20220719.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 2.0.20220805.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 2.0.20220912.1 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── debian │ │ ├── 11.4 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 11.5 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── fedora │ │ └── 36 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ └── ubuntu │ │ └── 22.04 │ │ ├── Dockerfile │ │ ├── Dockerfile-compat │ │ └── tpl │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ └── support.sh ├── 1.23.2 │ ├── almalinux │ │ ├── 8.6-20221001 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 8.6-20221101 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 8.7-20221110 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 8.7-20221201 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── alpine │ │ ├── 3.16.2 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 3.16.3 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 3.17.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2.0.20220912.1 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 2.0.20221004.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 2.0.20221103.3 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── debian │ │ └── 11.5 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── fedora │ │ ├── 36 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 37 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ └── ubuntu │ │ └── 22.04 │ │ ├── Dockerfile │ │ ├── Dockerfile-compat │ │ └── tpl │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ └── support.sh ├── 1.23.3 │ ├── almalinux │ │ ├── 8.7-20221201 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 8.7-20230222 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── alpine │ │ ├── 3.17.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 3.17.1 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 3.17.2 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2.0.20221103.3 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 2.0.20221210.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 2.0.20230119.1 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 2.0.20230221.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 2.0.20230307.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── debian │ │ ├── 11.5 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 11.6 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── fedora │ │ └── 37 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ └── ubuntu │ │ └── 22.04 │ │ ├── Dockerfile │ │ ├── Dockerfile-compat │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ └── support.sh ├── 1.23.4 │ ├── almalinux │ │ ├── 8.7-20230222 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 8.7-20230407 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 9.2-20230512 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── alpine │ │ ├── 3.17.3 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 3.18.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2023.0.20230322.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 2023.0.20230503.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── debian │ │ ├── 11.6 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 11.7 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── fedora │ │ ├── 37 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 38 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ └── ubuntu │ │ └── 22.04 │ │ ├── Dockerfile │ │ ├── Dockerfile-compat │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ └── support.sh ├── 1.25.0 │ ├── almalinux │ │ └── 9.2-20230512 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── alpine │ │ └── 3.18.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2023.0.20230503.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 2023.0.20230517.1 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 2023.0.20230607.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── debian │ │ ├── 11.7 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 12.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── fedora │ │ └── 38 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ └── support.sh │ └── ubuntu │ │ └── 22.04 │ │ ├── Dockerfile │ │ ├── Dockerfile-compat │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ └── support.sh ├── 1.25.1 │ ├── almalinux │ │ ├── 9.2-20230512 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 9.2-20230718 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── alpine │ │ ├── 3.18.2 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 3.18.3 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2023.0.20230607.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 2023.0.20230614.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 2023.1.20230705.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ ├── 2023.1.20230719.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 2023.1.20230725.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── debian │ │ ├── 12.0 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 12.1 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── fedora │ │ └── 38 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-compat │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ └── ubuntu │ │ └── 22.04 │ │ ├── Dockerfile │ │ ├── Dockerfile-compat │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ ├── patches │ │ ├── nginx-1.23.0-no_pool.patch │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.23.0-server_header.patch │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.25.1-server_header.patch │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ └── support.sh ├── 1.25.2 │ ├── almalinux │ │ └── 9.2-20230718 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── alpine │ │ ├── 3.18.3 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 3.18.4 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2023.1.20230725.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.1.20230809.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.1.20230825.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.2.20230920.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 2023.2.20231011.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── debian │ │ ├── 12.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 12.2 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── fedora │ │ └── 38 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ └── ubuntu │ │ └── 22.04 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ ├── patches │ │ ├── nginx-1.23.0-no_pool.patch │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.23.0-server_header.patch │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.25.1-server_header.patch │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ └── support.sh ├── 1.25.3 │ ├── almalinux │ │ ├── 9.2-20230718 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 9.3-20231124 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── alpine │ │ ├── 3.18.4 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 3.18.5 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 3.19.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 3.19.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2023.2.20231018.2 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.2.20231026.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.2.20231113.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.3.20231211.4 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.3.20231218.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.3.20240108.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.3.20240117.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 2023.3.20240131.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── debian │ │ ├── 12.2 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 12.4 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 12.5 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── fedora │ │ ├── 38 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 39 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ └── ubuntu │ │ └── 22.04 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ ├── patches │ │ ├── nginx-1.23.0-no_pool.patch │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.23.0-server_header.patch │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.25.1-server_header.patch │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ └── support.sh ├── 1.25.4 │ ├── almalinux │ │ ├── 9.3-20231124 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 9.3-20240410 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── alpine │ │ └── 3.19.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2023.3.20240131.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.3.20240219.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.3.20240304.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.3.20240312.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 2023.4.20240401.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── debian │ │ └── 12.5 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── fedora │ │ └── 39 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ └── ubuntu │ │ └── 22.04 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ ├── patches │ │ ├── nginx-1.23.0-no_pool.patch │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.23.0-server_header.patch │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.25.1-server_header.patch │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ └── support.sh ├── 1.25.5 │ ├── almalinux │ │ ├── 9.3-20240410 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 9.4-20240506 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── alpine │ │ ├── 3.19.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 3.20.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── amazonlinux │ │ └── 2023.4.20240416.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── debian │ │ └── 12.5 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── fedora │ │ └── 40 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ └── ubuntu │ │ └── 24.04 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ ├── patches │ │ ├── nginx-1.23.0-no_pool.patch │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.23.0-server_header.patch │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.25.1-server_header.patch │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ └── support.sh ├── 1.27.0 │ ├── almalinux │ │ ├── 9.4-20240530 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 9.4-20240723 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── alpine │ │ ├── 3.20.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 3.20.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 3.20.2 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2023.4.20240416.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.4.20240528.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.4.20240611.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.5.20240624.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.5.20240701.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.5.20240708.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.5.20240722.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.5.20240730.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 2023.5.20240805.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── debian │ │ ├── 12.5 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 12.6 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── fedora │ │ └── 40 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ └── ubuntu │ │ └── 24.04 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ ├── patches │ │ ├── nginx-1.23.0-no_pool.patch │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.23.0-server_header.patch │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.25.1-server_header.patch │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ └── support.sh ├── 1.27.1 │ ├── almalinux │ │ ├── 9.4-20240723 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 9.4-20240923 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── alpine │ │ ├── 3.20.2 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 3.20.3 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2023.5.20240805.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.5.20240819.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.5.20240903.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 2023.5.20240916.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── debian │ │ ├── 12.6 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 12.7 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── fedora │ │ └── 40 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ └── ubuntu │ │ └── 24.04 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ ├── patches │ │ ├── nginx-1.23.0-no_pool.patch │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.23.0-server_header.patch │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.25.1-server_header.patch │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ └── support.sh ├── 1.27.2 │ ├── almalinux │ │ ├── 9.4-20240923 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 9.5-20241118 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── alpine │ │ └── 3.20.3 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2023.5.20240916.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.5.20241001.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.6.20241010.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.6.20241031.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 2023.6.20241111.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── debian │ │ ├── 12.7 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 12.8 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── fedora │ │ ├── 40 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 41 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ └── ubuntu │ │ └── 24.04 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ ├── patches │ │ ├── nginx-1.23.0-no_pool.patch │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.23.0-server_header.patch │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.25.1-server_header.patch │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ └── support.sh ├── 1.27.3 │ ├── almalinux │ │ └── 9.5-20241118 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── alpine │ │ ├── 3.20.3 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 3.21.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 3.21.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 3.21.2 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2023.6.20241111.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.6.20241121.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.6.20241212.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.6.20250107.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.6.20250115.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 2023.6.20250128.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── debian │ │ ├── 12.8 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 12.9 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── fedora │ │ └── 41 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ └── ubuntu │ │ └── 24.04 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ ├── patches │ │ ├── nginx-1.23.0-no_pool.patch │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.23.0-server_header.patch │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.25.1-server_header.patch │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ └── support.sh ├── 1.27.4 │ ├── almalinux │ │ ├── 9.5-20241118 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 9.5-20250307 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 9.5-20250411 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── alpine │ │ ├── 3.21.2 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 3.21.3 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2023.6.20250128.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.6.20250203.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.6.20250218.2 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.6.20250303.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.6.20250317.2 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 2023.7.20250331.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── debian │ │ ├── 12.10 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 12.9 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ ├── fedora │ │ ├── 41 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 42 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── support.sh │ └── ubuntu │ │ └── 24.04 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ ├── patches │ │ ├── nginx-1.23.0-no_pool.patch │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.23.0-server_header.patch │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.25.1-server_header.patch │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ └── support.sh ├── 1.27.5 │ ├── almalinux │ │ ├── 9.5-20250411 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 9.5-20250519 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 9.6-20250520 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 9.6-20250527 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── nginx-1.27.1-socket_cloexec.patch │ │ │ │ └── support.sh │ │ └── 9.6-20250611 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── nginx-1.27.1-socket_cloexec.patch │ │ │ └── support.sh │ ├── alpine │ │ ├── 3.21.3 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 3.22.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── nginx-1.27.1-socket_cloexec.patch │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2023.7.20250331.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.7.20250414.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.7.20250428.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ ├── 2023.7.20250512.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── nginx-1.27.1-socket_cloexec.patch │ │ │ │ └── support.sh │ │ └── 2023.7.20250609.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── nginx-1.27.1-socket_cloexec.patch │ │ │ └── support.sh │ ├── debian │ │ ├── 12.10 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ └── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── support.sh │ │ └── 12.11 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── nginx-1.27.1-socket_cloexec.patch │ │ │ └── support.sh │ ├── fedora │ │ └── 42 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── nginx-1.27.1-socket_cloexec.patch │ │ │ └── support.sh │ └── ubuntu │ │ └── 24.04 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ ├── patches │ │ ├── nginx-1.23.0-no_pool.patch │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.23.0-server_header.patch │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ ├── nginx-1.25.1-server_header.patch │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ ├── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ └── nginx-1.27.1-socket_cloexec.patch │ │ └── support.sh ├── 1.28.0 │ ├── almalinux │ │ ├── 9.6-20250803 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ ├── 9.6-20250825 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ ├── 9.6-20250909 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ ├── 9.6-20251117 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ └── 9.7-20251119 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ ├── alpine │ │ ├── 3.22.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ └── 3.22.2 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2023.8.20250808.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ ├── 2023.8.20250818.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ ├── 2023.8.20250908.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ ├── 2023.8.20250915.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ ├── 2023.9.20250929.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ ├── 2023.9.20251027.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ ├── 2023.9.20251105.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ ├── 2023.9.20251110.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ └── 2023.9.20251117.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ ├── debian │ │ ├── 13.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ ├── 13.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ └── 13.2 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ ├── fedora │ │ └── 42 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ └── ubuntu │ │ └── 24.04 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ ├── patches │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ ├── headers-more-nginx-module.LICENSE │ │ ├── lua-nginx-module.LICENSE │ │ ├── lua-resty-balancer.LICENSE │ │ ├── lua-resty-cookie.LICENSE │ │ ├── lua-resty-core.LICENSE │ │ ├── lua-resty-dns.LICENSE │ │ ├── lua-resty-limit-traffic.LICENSE │ │ ├── lua-resty-lock.LICENSE │ │ ├── lua-resty-lrucache.LICENSE │ │ ├── lua-resty-memcached.LICENSE │ │ ├── lua-resty-mysql.LICENSE │ │ ├── lua-resty-redis.LICENSE │ │ ├── lua-resty-shell.LICENSE │ │ ├── lua-resty-signal.LICENSE │ │ ├── lua-resty-string.LICENSE │ │ ├── lua-resty-upload.LICENSE │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ ├── lua-resty-websocket.LICENSE │ │ ├── lua-tablepool.LICENSE │ │ ├── lua-upstream-nginx-module.LICENSE │ │ ├── luajit2.LICENSE │ │ ├── luarocks.LICENSE │ │ ├── nginx-lua-prometheus.LICENSE │ │ ├── ngx_devel_kit.LICENSE │ │ ├── njs.LICENSE │ │ ├── set-misc-nginx-module.LICENSE │ │ └── stream-lua-nginx-module.LICENSE │ │ └── support.sh ├── 1.29.0 │ ├── almalinux │ │ ├── 9.6-20250611 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── nginx-1.27.1-socket_cloexec.patch │ │ │ │ └── support.sh │ │ ├── 9.6-20250709 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── nginx-1.27.1-socket_cloexec.patch │ │ │ │ └── support.sh │ │ ├── 9.6-20250712 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── nginx-1.27.1-socket_cloexec.patch │ │ │ │ └── support.sh │ │ └── 9.6-20250803 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── licenses │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── alpine │ │ ├── 3.22.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ └── support.sh │ │ └── 3.22.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── licenses │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ ├── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ └── nginx-1.27.1-socket_cloexec.patch │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2023.7.20250609.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── nginx-1.27.1-socket_cloexec.patch │ │ │ │ └── support.sh │ │ ├── 2023.7.20250623.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── nginx-1.23.0-no_pool.patch │ │ │ │ ├── nginx-1.23.0-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.23.0-server_header.patch │ │ │ │ ├── nginx-1.23.0-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.23.0-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.23.0-stream_proxy_timeout_fields.patch │ │ │ │ ├── nginx-1.25.1-safe_resolver_ipv6_option.patch │ │ │ │ ├── nginx-1.25.1-server_header.patch │ │ │ │ ├── nginx-1.25.1-setting_args_invalidates_uri.patch │ │ │ │ ├── nginx-1.25.1-ssl_client_hello_cb_yield.patch │ │ │ │ ├── nginx-1.25.1-stream_proxy_timeout_fields.patch │ │ │ │ └── nginx-1.27.1-socket_cloexec.patch │ │ │ │ └── support.sh │ │ └── 2023.8.20250715.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── licenses │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── debian │ │ └── 12.11 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── licenses │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ ├── nginx.conf │ │ │ └── support.sh │ ├── fedora │ │ └── 42 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── licenses │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ ├── nginx.conf │ │ │ └── support.sh │ └── ubuntu │ │ └── 24.04 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── licenses │ │ ├── headers-more-nginx-module.LICENSE │ │ ├── lua-nginx-module.LICENSE │ │ ├── lua-resty-balancer.LICENSE │ │ ├── lua-resty-cookie.LICENSE │ │ ├── lua-resty-core.LICENSE │ │ ├── lua-resty-dns.LICENSE │ │ ├── lua-resty-limit-traffic.LICENSE │ │ ├── lua-resty-lock.LICENSE │ │ ├── lua-resty-lrucache.LICENSE │ │ ├── lua-resty-memcached.LICENSE │ │ ├── lua-resty-mysql.LICENSE │ │ ├── lua-resty-redis.LICENSE │ │ ├── lua-resty-shell.LICENSE │ │ ├── lua-resty-signal.LICENSE │ │ ├── lua-resty-string.LICENSE │ │ ├── lua-resty-upload.LICENSE │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ ├── lua-resty-websocket.LICENSE │ │ ├── lua-tablepool.LICENSE │ │ ├── lua-upstream-nginx-module.LICENSE │ │ ├── luajit2.LICENSE │ │ ├── luarocks.LICENSE │ │ ├── nginx-lua-prometheus.LICENSE │ │ ├── ngx_devel_kit.LICENSE │ │ ├── njs.LICENSE │ │ ├── set-misc-nginx-module.LICENSE │ │ └── stream-lua-nginx-module.LICENSE │ │ ├── nginx.conf │ │ └── support.sh ├── 1.29.1 │ ├── almalinux │ │ ├── 9.6-20250803 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ ├── 9.6-20250825 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ └── 9.6-20250909 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ ├── alpine │ │ └── 3.22.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ ├── amazonlinux │ │ ├── 2023.8.20250808.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ ├── 2023.8.20250818.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ ├── 2023.8.20250908.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ ├── 2023.8.20250915.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ └── 2023.9.20250929.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ ├── debian │ │ ├── 13.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ └── 13.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ ├── fedora │ │ └── 42 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ └── ubuntu │ │ └── 24.04 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ ├── patches │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ ├── headers-more-nginx-module.LICENSE │ │ ├── lua-nginx-module.LICENSE │ │ ├── lua-resty-balancer.LICENSE │ │ ├── lua-resty-cookie.LICENSE │ │ ├── lua-resty-core.LICENSE │ │ ├── lua-resty-dns.LICENSE │ │ ├── lua-resty-limit-traffic.LICENSE │ │ ├── lua-resty-lock.LICENSE │ │ ├── lua-resty-lrucache.LICENSE │ │ ├── lua-resty-memcached.LICENSE │ │ ├── lua-resty-mysql.LICENSE │ │ ├── lua-resty-redis.LICENSE │ │ ├── lua-resty-shell.LICENSE │ │ ├── lua-resty-signal.LICENSE │ │ ├── lua-resty-string.LICENSE │ │ ├── lua-resty-upload.LICENSE │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ ├── lua-resty-websocket.LICENSE │ │ ├── lua-tablepool.LICENSE │ │ ├── lua-upstream-nginx-module.LICENSE │ │ ├── luajit2.LICENSE │ │ ├── luarocks.LICENSE │ │ ├── nginx-lua-prometheus.LICENSE │ │ ├── ngx_devel_kit.LICENSE │ │ ├── njs.LICENSE │ │ ├── set-misc-nginx-module.LICENSE │ │ └── stream-lua-nginx-module.LICENSE │ │ └── support.sh ├── 1.29.2 │ ├── almalinux │ │ └── 9.6-20250909 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ ├── alpine │ │ ├── 3.22.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ │ ├── .env.dist │ │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ │ ├── 30-tune-worker-processes.sh │ │ │ │ ├── Makefile │ │ │ │ ├── default.conf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ ├── nginx.conf │ │ │ │ ├── patches │ │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ │ ├── lua-nginx-module.LICENSE │ │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ │ ├── lua-resty-core.LICENSE │ │ │ │ ├── lua-resty-dns.LICENSE │ │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ │ ├── lua-resty-lock.LICENSE │ │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ │ ├── lua-resty-redis.LICENSE │ │ │ │ ├── lua-resty-shell.LICENSE │ │ │ │ ├── lua-resty-signal.LICENSE │ │ │ │ ├── lua-resty-string.LICENSE │ │ │ │ ├── lua-resty-upload.LICENSE │ │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ │ ├── lua-tablepool.LICENSE │ │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ │ ├── luajit2.LICENSE │ │ │ │ ├── luarocks.LICENSE │ │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ │ ├── njs.LICENSE │ │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ │ └── support.sh │ │ └── 3.22.2 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ ├── amazonlinux │ │ └── 2023.9.20250929.0 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ ├── debian │ │ └── 13.1 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ ├── fedora │ │ └── 42 │ │ │ ├── Dockerfile │ │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ └── ubuntu │ │ └── 24.04 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ ├── patches │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ ├── headers-more-nginx-module.LICENSE │ │ ├── lua-nginx-module.LICENSE │ │ ├── lua-resty-balancer.LICENSE │ │ ├── lua-resty-cookie.LICENSE │ │ ├── lua-resty-core.LICENSE │ │ ├── lua-resty-dns.LICENSE │ │ ├── lua-resty-limit-traffic.LICENSE │ │ ├── lua-resty-lock.LICENSE │ │ ├── lua-resty-lrucache.LICENSE │ │ ├── lua-resty-memcached.LICENSE │ │ ├── lua-resty-mysql.LICENSE │ │ ├── lua-resty-redis.LICENSE │ │ ├── lua-resty-shell.LICENSE │ │ ├── lua-resty-signal.LICENSE │ │ ├── lua-resty-string.LICENSE │ │ ├── lua-resty-upload.LICENSE │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ ├── lua-resty-websocket.LICENSE │ │ ├── lua-tablepool.LICENSE │ │ ├── lua-upstream-nginx-module.LICENSE │ │ ├── luajit2.LICENSE │ │ ├── luarocks.LICENSE │ │ ├── nginx-lua-prometheus.LICENSE │ │ ├── ngx_devel_kit.LICENSE │ │ ├── njs.LICENSE │ │ ├── set-misc-nginx-module.LICENSE │ │ └── stream-lua-nginx-module.LICENSE │ │ └── support.sh └── 1.29.3 │ ├── almalinux │ ├── 9.6-20250909 │ │ ├── Dockerfile │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ ├── 9.6-20251117 │ │ ├── Dockerfile │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ └── 9.7-20251119 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ ├── patches │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ ├── headers-more-nginx-module.LICENSE │ │ ├── lua-nginx-module.LICENSE │ │ ├── lua-resty-balancer.LICENSE │ │ ├── lua-resty-cookie.LICENSE │ │ ├── lua-resty-core.LICENSE │ │ ├── lua-resty-dns.LICENSE │ │ ├── lua-resty-limit-traffic.LICENSE │ │ ├── lua-resty-lock.LICENSE │ │ ├── lua-resty-lrucache.LICENSE │ │ ├── lua-resty-memcached.LICENSE │ │ ├── lua-resty-mysql.LICENSE │ │ ├── lua-resty-redis.LICENSE │ │ ├── lua-resty-shell.LICENSE │ │ ├── lua-resty-signal.LICENSE │ │ ├── lua-resty-string.LICENSE │ │ ├── lua-resty-upload.LICENSE │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ ├── lua-resty-websocket.LICENSE │ │ ├── lua-tablepool.LICENSE │ │ ├── lua-upstream-nginx-module.LICENSE │ │ ├── luajit2.LICENSE │ │ ├── luarocks.LICENSE │ │ ├── nginx-lua-prometheus.LICENSE │ │ ├── ngx_devel_kit.LICENSE │ │ ├── njs.LICENSE │ │ ├── set-misc-nginx-module.LICENSE │ │ └── stream-lua-nginx-module.LICENSE │ │ └── support.sh │ ├── alpine │ └── 3.22.2 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ ├── patches │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ ├── headers-more-nginx-module.LICENSE │ │ ├── lua-nginx-module.LICENSE │ │ ├── lua-resty-balancer.LICENSE │ │ ├── lua-resty-cookie.LICENSE │ │ ├── lua-resty-core.LICENSE │ │ ├── lua-resty-dns.LICENSE │ │ ├── lua-resty-limit-traffic.LICENSE │ │ ├── lua-resty-lock.LICENSE │ │ ├── lua-resty-lrucache.LICENSE │ │ ├── lua-resty-memcached.LICENSE │ │ ├── lua-resty-mysql.LICENSE │ │ ├── lua-resty-redis.LICENSE │ │ ├── lua-resty-shell.LICENSE │ │ ├── lua-resty-signal.LICENSE │ │ ├── lua-resty-string.LICENSE │ │ ├── lua-resty-upload.LICENSE │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ ├── lua-resty-websocket.LICENSE │ │ ├── lua-tablepool.LICENSE │ │ ├── lua-upstream-nginx-module.LICENSE │ │ ├── luajit2.LICENSE │ │ ├── luarocks.LICENSE │ │ ├── nginx-lua-prometheus.LICENSE │ │ ├── ngx_devel_kit.LICENSE │ │ ├── njs.LICENSE │ │ ├── set-misc-nginx-module.LICENSE │ │ └── stream-lua-nginx-module.LICENSE │ │ └── support.sh │ ├── amazonlinux │ ├── 2023.9.20250929.0 │ │ ├── Dockerfile │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ ├── 2023.9.20251027.0 │ │ ├── Dockerfile │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ ├── 2023.9.20251105.0 │ │ ├── Dockerfile │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ ├── 2023.9.20251110.1 │ │ ├── Dockerfile │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ └── 2023.9.20251117.1 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ ├── patches │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ ├── headers-more-nginx-module.LICENSE │ │ ├── lua-nginx-module.LICENSE │ │ ├── lua-resty-balancer.LICENSE │ │ ├── lua-resty-cookie.LICENSE │ │ ├── lua-resty-core.LICENSE │ │ ├── lua-resty-dns.LICENSE │ │ ├── lua-resty-limit-traffic.LICENSE │ │ ├── lua-resty-lock.LICENSE │ │ ├── lua-resty-lrucache.LICENSE │ │ ├── lua-resty-memcached.LICENSE │ │ ├── lua-resty-mysql.LICENSE │ │ ├── lua-resty-redis.LICENSE │ │ ├── lua-resty-shell.LICENSE │ │ ├── lua-resty-signal.LICENSE │ │ ├── lua-resty-string.LICENSE │ │ ├── lua-resty-upload.LICENSE │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ ├── lua-resty-websocket.LICENSE │ │ ├── lua-tablepool.LICENSE │ │ ├── lua-upstream-nginx-module.LICENSE │ │ ├── luajit2.LICENSE │ │ ├── luarocks.LICENSE │ │ ├── nginx-lua-prometheus.LICENSE │ │ ├── ngx_devel_kit.LICENSE │ │ ├── njs.LICENSE │ │ ├── set-misc-nginx-module.LICENSE │ │ └── stream-lua-nginx-module.LICENSE │ │ └── support.sh │ ├── debian │ ├── 13.1 │ │ ├── Dockerfile │ │ └── tpl │ │ │ ├── .env.dist │ │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ │ ├── 20-envsubst-on-templates.sh │ │ │ ├── 30-tune-worker-processes.sh │ │ │ ├── Makefile │ │ │ ├── default.conf │ │ │ ├── docker-entrypoint.sh │ │ │ ├── nginx.conf │ │ │ ├── patches │ │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ │ ├── headers-more-nginx-module.LICENSE │ │ │ ├── lua-nginx-module.LICENSE │ │ │ ├── lua-resty-balancer.LICENSE │ │ │ ├── lua-resty-cookie.LICENSE │ │ │ ├── lua-resty-core.LICENSE │ │ │ ├── lua-resty-dns.LICENSE │ │ │ ├── lua-resty-limit-traffic.LICENSE │ │ │ ├── lua-resty-lock.LICENSE │ │ │ ├── lua-resty-lrucache.LICENSE │ │ │ ├── lua-resty-memcached.LICENSE │ │ │ ├── lua-resty-mysql.LICENSE │ │ │ ├── lua-resty-redis.LICENSE │ │ │ ├── lua-resty-shell.LICENSE │ │ │ ├── lua-resty-signal.LICENSE │ │ │ ├── lua-resty-string.LICENSE │ │ │ ├── lua-resty-upload.LICENSE │ │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ │ ├── lua-resty-websocket.LICENSE │ │ │ ├── lua-tablepool.LICENSE │ │ │ ├── lua-upstream-nginx-module.LICENSE │ │ │ ├── luajit2.LICENSE │ │ │ ├── luarocks.LICENSE │ │ │ ├── nginx-lua-prometheus.LICENSE │ │ │ ├── ngx_devel_kit.LICENSE │ │ │ ├── njs.LICENSE │ │ │ ├── set-misc-nginx-module.LICENSE │ │ │ └── stream-lua-nginx-module.LICENSE │ │ │ └── support.sh │ └── 13.2 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ ├── patches │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ ├── headers-more-nginx-module.LICENSE │ │ ├── lua-nginx-module.LICENSE │ │ ├── lua-resty-balancer.LICENSE │ │ ├── lua-resty-cookie.LICENSE │ │ ├── lua-resty-core.LICENSE │ │ ├── lua-resty-dns.LICENSE │ │ ├── lua-resty-limit-traffic.LICENSE │ │ ├── lua-resty-lock.LICENSE │ │ ├── lua-resty-lrucache.LICENSE │ │ ├── lua-resty-memcached.LICENSE │ │ ├── lua-resty-mysql.LICENSE │ │ ├── lua-resty-redis.LICENSE │ │ ├── lua-resty-shell.LICENSE │ │ ├── lua-resty-signal.LICENSE │ │ ├── lua-resty-string.LICENSE │ │ ├── lua-resty-upload.LICENSE │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ ├── lua-resty-websocket.LICENSE │ │ ├── lua-tablepool.LICENSE │ │ ├── lua-upstream-nginx-module.LICENSE │ │ ├── luajit2.LICENSE │ │ ├── luarocks.LICENSE │ │ ├── nginx-lua-prometheus.LICENSE │ │ ├── ngx_devel_kit.LICENSE │ │ ├── njs.LICENSE │ │ ├── set-misc-nginx-module.LICENSE │ │ └── stream-lua-nginx-module.LICENSE │ │ └── support.sh │ ├── fedora │ └── 42 │ │ ├── Dockerfile │ │ └── tpl │ │ ├── .env.dist │ │ ├── 10-listen-on-ipv6-by-default.sh │ │ ├── 20-envsubst-on-templates.sh │ │ ├── 30-tune-worker-processes.sh │ │ ├── Makefile │ │ ├── default.conf │ │ ├── docker-entrypoint.sh │ │ ├── nginx.conf │ │ ├── patches │ │ ├── 3rd-party-SSL-implementation.LICENSE │ │ ├── headers-more-nginx-module.LICENSE │ │ ├── lua-nginx-module.LICENSE │ │ ├── lua-resty-balancer.LICENSE │ │ ├── lua-resty-cookie.LICENSE │ │ ├── lua-resty-core.LICENSE │ │ ├── lua-resty-dns.LICENSE │ │ ├── lua-resty-limit-traffic.LICENSE │ │ ├── lua-resty-lock.LICENSE │ │ ├── lua-resty-lrucache.LICENSE │ │ ├── lua-resty-memcached.LICENSE │ │ ├── lua-resty-mysql.LICENSE │ │ ├── lua-resty-redis.LICENSE │ │ ├── lua-resty-shell.LICENSE │ │ ├── lua-resty-signal.LICENSE │ │ ├── lua-resty-string.LICENSE │ │ ├── lua-resty-upload.LICENSE │ │ ├── lua-resty-upstream-healthcheck.LICENSE │ │ ├── lua-resty-websocket.LICENSE │ │ ├── lua-tablepool.LICENSE │ │ ├── lua-upstream-nginx-module.LICENSE │ │ ├── luajit2.LICENSE │ │ ├── luarocks.LICENSE │ │ ├── nginx-lua-prometheus.LICENSE │ │ ├── ngx_devel_kit.LICENSE │ │ ├── njs.LICENSE │ │ ├── set-misc-nginx-module.LICENSE │ │ └── stream-lua-nginx-module.LICENSE │ │ └── support.sh │ └── ubuntu │ └── 24.04 │ ├── Dockerfile │ └── tpl │ ├── .env.dist │ ├── 10-listen-on-ipv6-by-default.sh │ ├── 20-envsubst-on-templates.sh │ ├── 30-tune-worker-processes.sh │ ├── Makefile │ ├── default.conf │ ├── docker-entrypoint.sh │ ├── nginx.conf │ ├── patches │ ├── 3rd-party-SSL-implementation.LICENSE │ ├── headers-more-nginx-module.LICENSE │ ├── lua-nginx-module.LICENSE │ ├── lua-resty-balancer.LICENSE │ ├── lua-resty-cookie.LICENSE │ ├── lua-resty-core.LICENSE │ ├── lua-resty-dns.LICENSE │ ├── lua-resty-limit-traffic.LICENSE │ ├── lua-resty-lock.LICENSE │ ├── lua-resty-lrucache.LICENSE │ ├── lua-resty-memcached.LICENSE │ ├── lua-resty-mysql.LICENSE │ ├── lua-resty-redis.LICENSE │ ├── lua-resty-shell.LICENSE │ ├── lua-resty-signal.LICENSE │ ├── lua-resty-string.LICENSE │ ├── lua-resty-upload.LICENSE │ ├── lua-resty-upstream-healthcheck.LICENSE │ ├── lua-resty-websocket.LICENSE │ ├── lua-tablepool.LICENSE │ ├── lua-upstream-nginx-module.LICENSE │ ├── luajit2.LICENSE │ ├── luarocks.LICENSE │ ├── nginx-lua-prometheus.LICENSE │ ├── ngx_devel_kit.LICENSE │ ├── njs.LICENSE │ ├── set-misc-nginx-module.LICENSE │ └── stream-lua-nginx-module.LICENSE │ └── support.sh ├── src ├── .env.dist ├── 10-listen-on-ipv6-by-default.sh ├── 15-local-resolvers.envsh ├── 20-envsubst-on-templates.sh ├── 30-tune-worker-processes.sh ├── Dockerfile.almalinux ├── Dockerfile.alpine ├── Dockerfile.amazonlinux ├── Dockerfile.debian ├── Dockerfile.fedora ├── Dockerfile.ubuntu ├── Makefile ├── default.conf ├── docker-entrypoint.sh ├── docker-entrypoint.sh.patch ├── licenses │ ├── 3rd-party-SSL-implementation.LICENSE │ ├── headers-more-nginx-module.LICENSE │ ├── lua-nginx-module.LICENSE │ ├── lua-resty-balancer.LICENSE │ ├── lua-resty-cookie.LICENSE │ ├── lua-resty-core.LICENSE │ ├── lua-resty-dns.LICENSE │ ├── lua-resty-limit-traffic.LICENSE │ ├── lua-resty-lock.LICENSE │ ├── lua-resty-lrucache.LICENSE │ ├── lua-resty-memcached.LICENSE │ ├── lua-resty-mysql.LICENSE │ ├── lua-resty-redis.LICENSE │ ├── lua-resty-shell.LICENSE │ ├── lua-resty-signal.LICENSE │ ├── lua-resty-string.LICENSE │ ├── lua-resty-upload.LICENSE │ ├── lua-resty-upstream-healthcheck.LICENSE │ ├── lua-resty-websocket.LICENSE │ ├── lua-tablepool.LICENSE │ ├── lua-upstream-nginx-module.LICENSE │ ├── luajit2.LICENSE │ ├── luarocks.LICENSE │ ├── nginx-lua-prometheus.LICENSE │ ├── ngx_devel_kit.LICENSE │ ├── njs.LICENSE │ ├── set-misc-nginx-module.LICENSE │ └── stream-lua-nginx-module.LICENSE ├── nginx.conf ├── packages │ ├── Dockerfile.apk │ ├── Dockerfile.deb │ ├── Dockerfile.rpm │ └── after-install.sh └── support.sh ├── supported_versions ├── test ├── artillery-almalinux.yml ├── artillery-alpine.yml ├── artillery-amazonlinux.yml ├── artillery-debian.yml ├── artillery-fedora.yml ├── artillery-nginx-lua.yml ├── artillery-nginx.yml ├── artillery-openresty.yml ├── artillery-ubuntu.yml ├── nginx-lua.conf ├── nginx-non-lua.conf └── tests.conf.d │ ├── geoip.conf │ ├── headers-more-nginx-module.conf │ ├── lua-cjson.conf │ ├── lua-resty-balancer-2.conf │ ├── lua-resty-balancer.conf │ ├── lua-resty-cookie.conf │ ├── lua-resty-dns.conf │ ├── lua-resty-limit-traffic-2.conf │ ├── lua-resty-limit-traffic.conf │ ├── lua-resty-lock-2.conf │ ├── lua-resty-lock.conf │ ├── lua-resty-lrucache.conf │ ├── lua-resty-memcached.conf │ ├── lua-resty-mysql.conf │ ├── lua-resty-redis.conf │ ├── lua-resty-shell.conf │ ├── lua-resty-signal.conf │ ├── lua-resty-string.conf │ ├── lua-resty-upload.conf │ ├── lua-resty-upstream-healthcheck.conf │ ├── lua-resty-websocket.conf │ ├── lua-tablepool.conf │ ├── nginx-lua-prometheus.conf │ ├── regressions │ └── issue-151.conf │ ├── set-misc-nginx-module-2.conf │ ├── set-misc-nginx-module.conf │ └── stream-lua-nginx-module.conf └── tpl /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codacy.yml: -------------------------------------------------------------------------------- 1 | exclude_paths: 2 | - "nginx/**" -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | #* 2 | #!/src 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/.editorconfig -------------------------------------------------------------------------------- /.fossa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/.fossa.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/linters/.dockerfilelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/.github/linters/.dockerfilelintrc -------------------------------------------------------------------------------- /.github/linters/.ecrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/.github/linters/.ecrc -------------------------------------------------------------------------------- /.github/linters/.hadolint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/.github/linters/.hadolint.yml -------------------------------------------------------------------------------- /.github/linters/.markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/.github/linters/.markdown-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bin/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/bin/benchmark.sh -------------------------------------------------------------------------------- /bin/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/bin/common.py -------------------------------------------------------------------------------- /bin/docker-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/bin/docker-build.py -------------------------------------------------------------------------------- /bin/docker-bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/bin/docker-bundle.py -------------------------------------------------------------------------------- /bin/docker-metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/bin/docker-metadata.py -------------------------------------------------------------------------------- /bin/docker-push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/bin/docker-push.py -------------------------------------------------------------------------------- /bin/generate-changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/bin/generate-changelog.sh -------------------------------------------------------------------------------- /bin/generate-deps-env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/bin/generate-deps-env.py -------------------------------------------------------------------------------- /bin/generate-dockerfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/bin/generate-dockerfiles.py -------------------------------------------------------------------------------- /bin/generate-supported-versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/bin/generate-supported-versions.py -------------------------------------------------------------------------------- /bin/generate_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/bin/generate_tags.py -------------------------------------------------------------------------------- /bin/package-base-nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/bin/package-base-nginx.sh -------------------------------------------------------------------------------- /bin/package-test-base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/bin/package-test-base.sh -------------------------------------------------------------------------------- /bin/readme-tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/bin/readme-tags.py -------------------------------------------------------------------------------- /bin/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /bin/templates/deps-env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/bin/templates/deps-env.template -------------------------------------------------------------------------------- /bin/test-lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/bin/test-lint.sh -------------------------------------------------------------------------------- /bin/test-security.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/bin/test-security.sh -------------------------------------------------------------------------------- /bin/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/bin/test.sh -------------------------------------------------------------------------------- /bin/update-readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/bin/update-readme.sh -------------------------------------------------------------------------------- /docker-compose.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docker-compose.test.yml -------------------------------------------------------------------------------- /docs/BENCHMARKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/BENCHMARKS.md -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/DEV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/DEV.md -------------------------------------------------------------------------------- /docs/LICENSE.md: -------------------------------------------------------------------------------- 1 | ../LICENSE.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /docs/RESTY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/RESTY.md -------------------------------------------------------------------------------- /docs/TAGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/TAGS.md -------------------------------------------------------------------------------- /docs/examples/docker-compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/examples/docker-compose.md -------------------------------------------------------------------------------- /docs/examples/lua-nginx-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/examples/lua-nginx-module.md -------------------------------------------------------------------------------- /docs/examples/lua-resty-balancer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/examples/lua-resty-balancer.md -------------------------------------------------------------------------------- /docs/examples/lua-resty-cookie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/examples/lua-resty-cookie.md -------------------------------------------------------------------------------- /docs/examples/lua-resty-core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/examples/lua-resty-core.md -------------------------------------------------------------------------------- /docs/examples/lua-resty-dns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/examples/lua-resty-dns.md -------------------------------------------------------------------------------- /docs/examples/lua-resty-lock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/examples/lua-resty-lock.md -------------------------------------------------------------------------------- /docs/examples/lua-resty-lrucache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/examples/lua-resty-lrucache.md -------------------------------------------------------------------------------- /docs/examples/lua-resty-memcached.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/examples/lua-resty-memcached.md -------------------------------------------------------------------------------- /docs/examples/lua-resty-mysql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/examples/lua-resty-mysql.md -------------------------------------------------------------------------------- /docs/examples/lua-resty-redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/examples/lua-resty-redis.md -------------------------------------------------------------------------------- /docs/examples/lua-resty-shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/examples/lua-resty-shell.md -------------------------------------------------------------------------------- /docs/examples/lua-resty-signal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/examples/lua-resty-signal.md -------------------------------------------------------------------------------- /docs/examples/lua-resty-string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/examples/lua-resty-string.md -------------------------------------------------------------------------------- /docs/examples/lua-resty-upload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/examples/lua-resty-upload.md -------------------------------------------------------------------------------- /docs/examples/lua-resty-websocket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/examples/lua-resty-websocket.md -------------------------------------------------------------------------------- /docs/examples/lua-tablepool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/examples/lua-tablepool.md -------------------------------------------------------------------------------- /docs/examples/nginx-lua-prometheus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/examples/nginx-lua-prometheus.md -------------------------------------------------------------------------------- /docs/examples/set-misc-nginx-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/examples/set-misc-nginx-module.md -------------------------------------------------------------------------------- /docs/logo-lua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/logo-lua.png -------------------------------------------------------------------------------- /docs/logo-nginx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/logo-nginx.png -------------------------------------------------------------------------------- /docs/lua-nginx-module/DIRECTIVES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/lua-nginx-module/DIRECTIVES.md -------------------------------------------------------------------------------- /docs/lua-nginx-module/known-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/lua-nginx-module/known-issues.md -------------------------------------------------------------------------------- /docs/metadata/1.17.10-alpine3.10.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.17.10-alpine3.10.5.md -------------------------------------------------------------------------------- /docs/metadata/1.17.10-alpine3.11.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.17.10-alpine3.11.6.md -------------------------------------------------------------------------------- /docs/metadata/1.17.10-alpine3.12.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.17.10-alpine3.12.0.md -------------------------------------------------------------------------------- /docs/metadata/1.17.10-centos7.8.2003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.17.10-centos7.8.2003.md -------------------------------------------------------------------------------- /docs/metadata/1.17.10-centos8.2.2004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.17.10-centos8.2.2004.md -------------------------------------------------------------------------------- /docs/metadata/1.17.10-fedora29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.17.10-fedora29.md -------------------------------------------------------------------------------- /docs/metadata/1.17.10-fedora30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.17.10-fedora30.md -------------------------------------------------------------------------------- /docs/metadata/1.17.10-fedora31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.17.10-fedora31.md -------------------------------------------------------------------------------- /docs/metadata/1.17.10-ubuntu18.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.17.10-ubuntu18.04.md -------------------------------------------------------------------------------- /docs/metadata/1.17.10-ubuntu19.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.17.10-ubuntu19.10.md -------------------------------------------------------------------------------- /docs/metadata/1.17.10-ubuntu20.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.17.10-ubuntu20.04.md -------------------------------------------------------------------------------- /docs/metadata/1.18.0-alpine3.10.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.18.0-alpine3.10.5.md -------------------------------------------------------------------------------- /docs/metadata/1.18.0-alpine3.11.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.18.0-alpine3.11.6.md -------------------------------------------------------------------------------- /docs/metadata/1.18.0-alpine3.12.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.18.0-alpine3.12.0.md -------------------------------------------------------------------------------- /docs/metadata/1.18.0-centos7.8.2003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.18.0-centos7.8.2003.md -------------------------------------------------------------------------------- /docs/metadata/1.18.0-centos8.2.2004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.18.0-centos8.2.2004.md -------------------------------------------------------------------------------- /docs/metadata/1.18.0-debian10.4-slim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.18.0-debian10.4-slim.md -------------------------------------------------------------------------------- /docs/metadata/1.18.0-debian8.11-slim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.18.0-debian8.11-slim.md -------------------------------------------------------------------------------- /docs/metadata/1.18.0-debian9.12-slim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.18.0-debian9.12-slim.md -------------------------------------------------------------------------------- /docs/metadata/1.18.0-fedora29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.18.0-fedora29.md -------------------------------------------------------------------------------- /docs/metadata/1.18.0-fedora30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.18.0-fedora30.md -------------------------------------------------------------------------------- /docs/metadata/1.18.0-fedora31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.18.0-fedora31.md -------------------------------------------------------------------------------- /docs/metadata/1.18.0-ubuntu18.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.18.0-ubuntu18.04.md -------------------------------------------------------------------------------- /docs/metadata/1.18.0-ubuntu19.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.18.0-ubuntu19.10.md -------------------------------------------------------------------------------- /docs/metadata/1.18.0-ubuntu20.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.18.0-ubuntu20.04.md -------------------------------------------------------------------------------- /docs/metadata/1.19.0-alpine3.10.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.0-alpine3.10.5.md -------------------------------------------------------------------------------- /docs/metadata/1.19.0-alpine3.11.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.0-alpine3.11.6.md -------------------------------------------------------------------------------- /docs/metadata/1.19.0-alpine3.12.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.0-alpine3.12.0.md -------------------------------------------------------------------------------- /docs/metadata/1.19.0-centos7.8.2003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.0-centos7.8.2003.md -------------------------------------------------------------------------------- /docs/metadata/1.19.0-centos8.1.1911.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.0-centos8.1.1911.md -------------------------------------------------------------------------------- /docs/metadata/1.19.0-centos8.2.2004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.0-centos8.2.2004.md -------------------------------------------------------------------------------- /docs/metadata/1.19.0-debian10.3-slim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.0-debian10.3-slim.md -------------------------------------------------------------------------------- /docs/metadata/1.19.0-debian10.4-slim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.0-debian10.4-slim.md -------------------------------------------------------------------------------- /docs/metadata/1.19.0-debian8.11-slim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.0-debian8.11-slim.md -------------------------------------------------------------------------------- /docs/metadata/1.19.0-debian9.12-slim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.0-debian9.12-slim.md -------------------------------------------------------------------------------- /docs/metadata/1.19.0-fedora29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.0-fedora29.md -------------------------------------------------------------------------------- /docs/metadata/1.19.0-fedora30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.0-fedora30.md -------------------------------------------------------------------------------- /docs/metadata/1.19.0-fedora31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.0-fedora31.md -------------------------------------------------------------------------------- /docs/metadata/1.19.0-fedora32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.0-fedora32.md -------------------------------------------------------------------------------- /docs/metadata/1.19.0-ubuntu18.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.0-ubuntu18.04.md -------------------------------------------------------------------------------- /docs/metadata/1.19.0-ubuntu19.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.0-ubuntu19.10.md -------------------------------------------------------------------------------- /docs/metadata/1.19.0-ubuntu20.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.0-ubuntu20.04.md -------------------------------------------------------------------------------- /docs/metadata/1.19.1-alpine3.11.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.1-alpine3.11.6.md -------------------------------------------------------------------------------- /docs/metadata/1.19.1-centos8.1.1911.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.1-centos8.1.1911.md -------------------------------------------------------------------------------- /docs/metadata/1.19.1-debian10.3-slim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.1-debian10.3-slim.md -------------------------------------------------------------------------------- /docs/metadata/1.19.1-fedora32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.1-fedora32.md -------------------------------------------------------------------------------- /docs/metadata/1.19.1-ubuntu20.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.1-ubuntu20.04.md -------------------------------------------------------------------------------- /docs/metadata/1.19.10-alpine3.13.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.10-alpine3.13.4.md -------------------------------------------------------------------------------- /docs/metadata/1.19.10-alpine3.13.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.10-alpine3.13.5.md -------------------------------------------------------------------------------- /docs/metadata/1.19.10-debian10.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.10-debian10.9.md -------------------------------------------------------------------------------- /docs/metadata/1.19.10-fedora33.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.10-fedora33.md -------------------------------------------------------------------------------- /docs/metadata/1.19.10-ubuntu20.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.10-ubuntu20.04.md -------------------------------------------------------------------------------- /docs/metadata/1.19.2-alpine3.11.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.2-alpine3.11.6.md -------------------------------------------------------------------------------- /docs/metadata/1.19.2-centos8.1.1911.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.2-centos8.1.1911.md -------------------------------------------------------------------------------- /docs/metadata/1.19.2-debian10.4-slim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.2-debian10.4-slim.md -------------------------------------------------------------------------------- /docs/metadata/1.19.2-fedora33.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.2-fedora33.md -------------------------------------------------------------------------------- /docs/metadata/1.19.2-ubuntu20.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.2-ubuntu20.04.md -------------------------------------------------------------------------------- /docs/metadata/1.19.3-alpine3.11.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.3-alpine3.11.6.md -------------------------------------------------------------------------------- /docs/metadata/1.19.3-alpine3.12.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.3-alpine3.12.0.md -------------------------------------------------------------------------------- /docs/metadata/1.19.3-alpine3.12.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.3-alpine3.12.1.md -------------------------------------------------------------------------------- /docs/metadata/1.19.3-centos8.1.1911.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.3-centos8.1.1911.md -------------------------------------------------------------------------------- /docs/metadata/1.19.3-centos8.2.2004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.3-centos8.2.2004.md -------------------------------------------------------------------------------- /docs/metadata/1.19.3-centos8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.3-centos8.md -------------------------------------------------------------------------------- /docs/metadata/1.19.3-debian10.5-slim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.3-debian10.5-slim.md -------------------------------------------------------------------------------- /docs/metadata/1.19.3-debian10.6-slim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.3-debian10.6-slim.md -------------------------------------------------------------------------------- /docs/metadata/1.19.3-debian10.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.3-debian10.6.md -------------------------------------------------------------------------------- /docs/metadata/1.19.3-fedora33.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.3-fedora33.md -------------------------------------------------------------------------------- /docs/metadata/1.19.3-fedora34.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.3-fedora34.md -------------------------------------------------------------------------------- /docs/metadata/1.19.3-ubuntu20.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.3-ubuntu20.04.md -------------------------------------------------------------------------------- /docs/metadata/1.19.3-ubuntu20.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.3-ubuntu20.10.md -------------------------------------------------------------------------------- /docs/metadata/1.19.4-alpine3.12.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.4-alpine3.12.1.md -------------------------------------------------------------------------------- /docs/metadata/1.19.4-centos8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.4-centos8.md -------------------------------------------------------------------------------- /docs/metadata/1.19.4-debian10.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.4-debian10.6.md -------------------------------------------------------------------------------- /docs/metadata/1.19.4-fedora33.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.4-fedora33.md -------------------------------------------------------------------------------- /docs/metadata/1.19.4-ubuntu20.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.4-ubuntu20.04.md -------------------------------------------------------------------------------- /docs/metadata/1.19.5-alpine3.12.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.5-alpine3.12.1.md -------------------------------------------------------------------------------- /docs/metadata/1.19.5-alpine3.12.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.5-alpine3.12.2.md -------------------------------------------------------------------------------- /docs/metadata/1.19.5-centos8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.5-centos8.md -------------------------------------------------------------------------------- /docs/metadata/1.19.5-debian10.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.5-debian10.6.md -------------------------------------------------------------------------------- /docs/metadata/1.19.5-debian10.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.5-debian10.7.md -------------------------------------------------------------------------------- /docs/metadata/1.19.5-fedora33.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.5-fedora33.md -------------------------------------------------------------------------------- /docs/metadata/1.19.5-ubuntu20.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.5-ubuntu20.04.md -------------------------------------------------------------------------------- /docs/metadata/1.19.6-alpine3.12.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.6-alpine3.12.2.md -------------------------------------------------------------------------------- /docs/metadata/1.19.6-alpine3.12.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.6-alpine3.12.3.md -------------------------------------------------------------------------------- /docs/metadata/1.19.6-alpine3.13.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.6-alpine3.13.0.md -------------------------------------------------------------------------------- /docs/metadata/1.19.6-alpine3.13.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.6-alpine3.13.1.md -------------------------------------------------------------------------------- /docs/metadata/1.19.6-centos8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.6-centos8.md -------------------------------------------------------------------------------- /docs/metadata/1.19.6-debian10.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.6-debian10.7.md -------------------------------------------------------------------------------- /docs/metadata/1.19.6-debian10.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.6-debian10.8.md -------------------------------------------------------------------------------- /docs/metadata/1.19.6-fedora33.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.6-fedora33.md -------------------------------------------------------------------------------- /docs/metadata/1.19.6-ubuntu20.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.6-ubuntu20.04.md -------------------------------------------------------------------------------- /docs/metadata/1.19.7-alpine3.13.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.7-alpine3.13.2.md -------------------------------------------------------------------------------- /docs/metadata/1.19.7-debian10.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.7-debian10.8.md -------------------------------------------------------------------------------- /docs/metadata/1.19.7-fedora33.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.7-fedora33.md -------------------------------------------------------------------------------- /docs/metadata/1.19.7-ubuntu20.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.7-ubuntu20.04.md -------------------------------------------------------------------------------- /docs/metadata/1.19.8-alpine3.13.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.8-alpine3.13.2.md -------------------------------------------------------------------------------- /docs/metadata/1.19.8-alpine3.13.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.8-alpine3.13.3.md -------------------------------------------------------------------------------- /docs/metadata/1.19.8-debian10.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.8-debian10.8.md -------------------------------------------------------------------------------- /docs/metadata/1.19.8-fedora33.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.8-fedora33.md -------------------------------------------------------------------------------- /docs/metadata/1.19.8-ubuntu20.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.8-ubuntu20.04.md -------------------------------------------------------------------------------- /docs/metadata/1.19.9-alpine3.13.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.9-alpine3.13.3.md -------------------------------------------------------------------------------- /docs/metadata/1.19.9-alpine3.13.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.9-alpine3.13.4.md -------------------------------------------------------------------------------- /docs/metadata/1.19.9-debian10.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.9-debian10.9.md -------------------------------------------------------------------------------- /docs/metadata/1.19.9-fedora33.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.9-fedora33.md -------------------------------------------------------------------------------- /docs/metadata/1.19.9-ubuntu20.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.19.9-ubuntu20.04.md -------------------------------------------------------------------------------- /docs/metadata/1.20.0-alpine3.13.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.20.0-alpine3.13.5.md -------------------------------------------------------------------------------- /docs/metadata/1.20.0-debian10.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.20.0-debian10.9.md -------------------------------------------------------------------------------- /docs/metadata/1.20.0-fedora33.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.20.0-fedora33.md -------------------------------------------------------------------------------- /docs/metadata/1.20.0-fedora34.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.20.0-fedora34.md -------------------------------------------------------------------------------- /docs/metadata/1.20.0-ubuntu20.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.20.0-ubuntu20.04.md -------------------------------------------------------------------------------- /docs/metadata/1.21.0-alpine3.13.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.0-alpine3.13.5.md -------------------------------------------------------------------------------- /docs/metadata/1.21.0-alpine3.14.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.0-alpine3.14.0.md -------------------------------------------------------------------------------- /docs/metadata/1.21.0-debian10.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.0-debian10.10.md -------------------------------------------------------------------------------- /docs/metadata/1.21.0-debian10.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.0-debian10.9.md -------------------------------------------------------------------------------- /docs/metadata/1.21.0-fedora34.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.0-fedora34.md -------------------------------------------------------------------------------- /docs/metadata/1.21.0-ubuntu20.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.0-ubuntu20.04.md -------------------------------------------------------------------------------- /docs/metadata/1.21.1-alpine3.14.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.1-alpine3.14.0.md -------------------------------------------------------------------------------- /docs/metadata/1.21.1-alpine3.14.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.1-alpine3.14.1.md -------------------------------------------------------------------------------- /docs/metadata/1.21.1-alpine3.14.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.1-alpine3.14.2.md -------------------------------------------------------------------------------- /docs/metadata/1.21.1-debian10.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.1-debian10.10.md -------------------------------------------------------------------------------- /docs/metadata/1.21.1-debian11.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.1-debian11.0.md -------------------------------------------------------------------------------- /docs/metadata/1.21.1-fedora34.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.1-fedora34.md -------------------------------------------------------------------------------- /docs/metadata/1.21.1-ubuntu20.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.1-ubuntu20.04.md -------------------------------------------------------------------------------- /docs/metadata/1.21.3-alpine3.14.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.3-alpine3.14.2.md -------------------------------------------------------------------------------- /docs/metadata/1.21.3-debian11.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.3-debian11.0.md -------------------------------------------------------------------------------- /docs/metadata/1.21.3-debian11.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.3-debian11.1.md -------------------------------------------------------------------------------- /docs/metadata/1.21.3-fedora34.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.3-fedora34.md -------------------------------------------------------------------------------- /docs/metadata/1.21.3-fedora35.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.3-fedora35.md -------------------------------------------------------------------------------- /docs/metadata/1.21.3-ubuntu20.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.3-ubuntu20.04.md -------------------------------------------------------------------------------- /docs/metadata/1.21.4-alpine3.14.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.4-alpine3.14.2.md -------------------------------------------------------------------------------- /docs/metadata/1.21.4-alpine3.14.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.4-alpine3.14.3.md -------------------------------------------------------------------------------- /docs/metadata/1.21.4-alpine3.15.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.4-alpine3.15.0.md -------------------------------------------------------------------------------- /docs/metadata/1.21.4-debian11.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.4-debian11.1.md -------------------------------------------------------------------------------- /docs/metadata/1.21.4-debian11.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.4-debian11.2.md -------------------------------------------------------------------------------- /docs/metadata/1.21.4-fedora35.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.4-fedora35.md -------------------------------------------------------------------------------- /docs/metadata/1.21.4-ubuntu20.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.4-ubuntu20.04.md -------------------------------------------------------------------------------- /docs/metadata/1.21.5-alpine3.15.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.5-alpine3.15.0.md -------------------------------------------------------------------------------- /docs/metadata/1.21.5-debian11.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.5-debian11.2.md -------------------------------------------------------------------------------- /docs/metadata/1.21.5-fedora35.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.5-fedora35.md -------------------------------------------------------------------------------- /docs/metadata/1.21.5-ubuntu20.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.5-ubuntu20.04.md -------------------------------------------------------------------------------- /docs/metadata/1.21.6-alpine3.15.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.6-alpine3.15.0.md -------------------------------------------------------------------------------- /docs/metadata/1.21.6-alpine3.15.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.6-alpine3.15.1.md -------------------------------------------------------------------------------- /docs/metadata/1.21.6-alpine3.15.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.6-alpine3.15.2.md -------------------------------------------------------------------------------- /docs/metadata/1.21.6-alpine3.15.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.6-alpine3.15.3.md -------------------------------------------------------------------------------- /docs/metadata/1.21.6-alpine3.15.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.6-alpine3.15.4.md -------------------------------------------------------------------------------- /docs/metadata/1.21.6-alpine3.15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.6-alpine3.15.md -------------------------------------------------------------------------------- /docs/metadata/1.21.6-alpine3.16.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.6-alpine3.16.0.md -------------------------------------------------------------------------------- /docs/metadata/1.21.6-debian11.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.6-debian11.2.md -------------------------------------------------------------------------------- /docs/metadata/1.21.6-debian11.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.6-debian11.3.md -------------------------------------------------------------------------------- /docs/metadata/1.21.6-fedora35.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.6-fedora35.md -------------------------------------------------------------------------------- /docs/metadata/1.21.6-ubuntu20.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.6-ubuntu20.04.md -------------------------------------------------------------------------------- /docs/metadata/1.21.6-ubuntu22.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.21.6-ubuntu22.04.md -------------------------------------------------------------------------------- /docs/metadata/1.22.0-alpine3.16.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.22.0-alpine3.16.0.md -------------------------------------------------------------------------------- /docs/metadata/1.22.0-debian11.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.22.0-debian11.3.md -------------------------------------------------------------------------------- /docs/metadata/1.22.0-ubuntu22.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.22.0-ubuntu22.04.md -------------------------------------------------------------------------------- /docs/metadata/1.23.1-fedora36.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.23.1-fedora36.md -------------------------------------------------------------------------------- /docs/metadata/1.23.3-alpine3.17.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.23.3-alpine3.17.0.md -------------------------------------------------------------------------------- /docs/metadata/1.23.3-ubuntu22.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.23.3-ubuntu22.04.md -------------------------------------------------------------------------------- /docs/metadata/1.23.4-alpine3.17.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.23.4-alpine3.17.3.md -------------------------------------------------------------------------------- /docs/metadata/1.23.4-debian11.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.23.4-debian11.6.md -------------------------------------------------------------------------------- /docs/metadata/1.23.4-fedora37.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.23.4-fedora37.md -------------------------------------------------------------------------------- /docs/metadata/1.23.4-ubuntu22.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.23.4-ubuntu22.04.md -------------------------------------------------------------------------------- /docs/metadata/1.25.3-alpine3.18.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.25.3-alpine3.18.4.md -------------------------------------------------------------------------------- /docs/metadata/1.25.3-alpine3.18.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.25.3-alpine3.18.5.md -------------------------------------------------------------------------------- /docs/metadata/1.25.3-alpine3.19.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.25.3-alpine3.19.0.md -------------------------------------------------------------------------------- /docs/metadata/1.25.3-alpine3.19.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.25.3-alpine3.19.1.md -------------------------------------------------------------------------------- /docs/metadata/1.25.3-debian12.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.25.3-debian12.2.md -------------------------------------------------------------------------------- /docs/metadata/1.25.3-debian12.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.25.3-debian12.4.md -------------------------------------------------------------------------------- /docs/metadata/1.25.3-debian12.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.25.3-debian12.5.md -------------------------------------------------------------------------------- /docs/metadata/1.25.3-fedora39.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.25.3-fedora39.md -------------------------------------------------------------------------------- /docs/metadata/1.25.3-ubuntu22.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.25.3-ubuntu22.04.md -------------------------------------------------------------------------------- /docs/metadata/1.25.4-alpine3.19.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.25.4-alpine3.19.1.md -------------------------------------------------------------------------------- /docs/metadata/1.25.4-debian12.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.25.4-debian12.5.md -------------------------------------------------------------------------------- /docs/metadata/1.25.4-fedora39.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.25.4-fedora39.md -------------------------------------------------------------------------------- /docs/metadata/1.25.4-ubuntu22.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.25.4-ubuntu22.04.md -------------------------------------------------------------------------------- /docs/metadata/1.27.0-alpine3.20.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.0-alpine3.20.0.md -------------------------------------------------------------------------------- /docs/metadata/1.27.0-alpine3.20.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.0-alpine3.20.1.md -------------------------------------------------------------------------------- /docs/metadata/1.27.0-alpine3.20.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.0-alpine3.20.2.md -------------------------------------------------------------------------------- /docs/metadata/1.27.0-debian12.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.0-debian12.5.md -------------------------------------------------------------------------------- /docs/metadata/1.27.0-debian12.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.0-debian12.6.md -------------------------------------------------------------------------------- /docs/metadata/1.27.0-fedora40.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.0-fedora40.md -------------------------------------------------------------------------------- /docs/metadata/1.27.0-ubuntu24.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.0-ubuntu24.04.md -------------------------------------------------------------------------------- /docs/metadata/1.27.1-alpine3.20.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.1-alpine3.20.2.md -------------------------------------------------------------------------------- /docs/metadata/1.27.1-alpine3.20.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.1-alpine3.20.3.md -------------------------------------------------------------------------------- /docs/metadata/1.27.1-debian12.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.1-debian12.6.md -------------------------------------------------------------------------------- /docs/metadata/1.27.1-debian12.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.1-debian12.7.md -------------------------------------------------------------------------------- /docs/metadata/1.27.1-fedora40.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.1-fedora40.md -------------------------------------------------------------------------------- /docs/metadata/1.27.1-ubuntu24.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.1-ubuntu24.04.md -------------------------------------------------------------------------------- /docs/metadata/1.27.2-alpine3.20.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.2-alpine3.20.3.md -------------------------------------------------------------------------------- /docs/metadata/1.27.2-debian12.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.2-debian12.7.md -------------------------------------------------------------------------------- /docs/metadata/1.27.2-debian12.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.2-debian12.8.md -------------------------------------------------------------------------------- /docs/metadata/1.27.2-fedora40.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.2-fedora40.md -------------------------------------------------------------------------------- /docs/metadata/1.27.2-fedora41.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.2-fedora41.md -------------------------------------------------------------------------------- /docs/metadata/1.27.2-ubuntu24.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.2-ubuntu24.04.md -------------------------------------------------------------------------------- /docs/metadata/1.27.3-alpine3.20.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.3-alpine3.20.3.md -------------------------------------------------------------------------------- /docs/metadata/1.27.3-alpine3.21.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.3-alpine3.21.0.md -------------------------------------------------------------------------------- /docs/metadata/1.27.3-alpine3.21.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.3-alpine3.21.2.md -------------------------------------------------------------------------------- /docs/metadata/1.27.3-debian12.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.3-debian12.8.md -------------------------------------------------------------------------------- /docs/metadata/1.27.3-debian12.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.3-debian12.9.md -------------------------------------------------------------------------------- /docs/metadata/1.27.3-fedora41.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.3-fedora41.md -------------------------------------------------------------------------------- /docs/metadata/1.27.3-ubuntu24.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.3-ubuntu24.04.md -------------------------------------------------------------------------------- /docs/metadata/1.27.4-alpine3.21.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.4-alpine3.21.2.md -------------------------------------------------------------------------------- /docs/metadata/1.27.4-alpine3.21.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.4-alpine3.21.3.md -------------------------------------------------------------------------------- /docs/metadata/1.27.4-debian12.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.4-debian12.10.md -------------------------------------------------------------------------------- /docs/metadata/1.27.4-debian12.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.4-debian12.9.md -------------------------------------------------------------------------------- /docs/metadata/1.27.4-fedora41.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.4-fedora41.md -------------------------------------------------------------------------------- /docs/metadata/1.27.4-ubuntu24.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.4-ubuntu24.04.md -------------------------------------------------------------------------------- /docs/metadata/1.27.5-alpine3.21.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.5-alpine3.21.3.md -------------------------------------------------------------------------------- /docs/metadata/1.27.5-alpine3.22.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.5-alpine3.22.0.md -------------------------------------------------------------------------------- /docs/metadata/1.27.5-debian12.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.5-debian12.10.md -------------------------------------------------------------------------------- /docs/metadata/1.27.5-debian12.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.5-debian12.11.md -------------------------------------------------------------------------------- /docs/metadata/1.27.5-fedora42.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.5-fedora42.md -------------------------------------------------------------------------------- /docs/metadata/1.27.5-ubuntu24.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.27.5-ubuntu24.04.md -------------------------------------------------------------------------------- /docs/metadata/1.28.0-alpine3.22.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.28.0-alpine3.22.1.md -------------------------------------------------------------------------------- /docs/metadata/1.28.0-alpine3.22.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.28.0-alpine3.22.2.md -------------------------------------------------------------------------------- /docs/metadata/1.28.0-debian12.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.28.0-debian12.11.md -------------------------------------------------------------------------------- /docs/metadata/1.28.0-debian13.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.28.0-debian13.0.md -------------------------------------------------------------------------------- /docs/metadata/1.28.0-debian13.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.28.0-debian13.1.md -------------------------------------------------------------------------------- /docs/metadata/1.28.0-debian13.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.28.0-debian13.2.md -------------------------------------------------------------------------------- /docs/metadata/1.28.0-fedora42.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.28.0-fedora42.md -------------------------------------------------------------------------------- /docs/metadata/1.28.0-ubuntu24.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.28.0-ubuntu24.04.md -------------------------------------------------------------------------------- /docs/metadata/1.29.0-alpine3.22.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.29.0-alpine3.22.0.md -------------------------------------------------------------------------------- /docs/metadata/1.29.0-alpine3.22.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.29.0-alpine3.22.1.md -------------------------------------------------------------------------------- /docs/metadata/1.29.0-debian12.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.29.0-debian12.11.md -------------------------------------------------------------------------------- /docs/metadata/1.29.0-fedora42.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.29.0-fedora42.md -------------------------------------------------------------------------------- /docs/metadata/1.29.0-ubuntu24.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.29.0-ubuntu24.04.md -------------------------------------------------------------------------------- /docs/metadata/1.29.1-alpine3.22.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.29.1-alpine3.22.1.md -------------------------------------------------------------------------------- /docs/metadata/1.29.1-debian13.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.29.1-debian13.0.md -------------------------------------------------------------------------------- /docs/metadata/1.29.1-debian13.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.29.1-debian13.1.md -------------------------------------------------------------------------------- /docs/metadata/1.29.1-fedora42.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.29.1-fedora42.md -------------------------------------------------------------------------------- /docs/metadata/1.29.1-ubuntu24.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.29.1-ubuntu24.04.md -------------------------------------------------------------------------------- /docs/metadata/1.29.2-alpine3.22.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.29.2-alpine3.22.1.md -------------------------------------------------------------------------------- /docs/metadata/1.29.2-alpine3.22.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.29.2-alpine3.22.2.md -------------------------------------------------------------------------------- /docs/metadata/1.29.2-debian13.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.29.2-debian13.1.md -------------------------------------------------------------------------------- /docs/metadata/1.29.2-fedora42.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.29.2-fedora42.md -------------------------------------------------------------------------------- /docs/metadata/1.29.2-ubuntu24.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.29.2-ubuntu24.04.md -------------------------------------------------------------------------------- /docs/metadata/1.29.3-alpine3.22.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.29.3-alpine3.22.2.md -------------------------------------------------------------------------------- /docs/metadata/1.29.3-debian13.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.29.3-debian13.1.md -------------------------------------------------------------------------------- /docs/metadata/1.29.3-debian13.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.29.3-debian13.2.md -------------------------------------------------------------------------------- /docs/metadata/1.29.3-fedora42.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.29.3-fedora42.md -------------------------------------------------------------------------------- /docs/metadata/1.29.3-ubuntu24.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/docs/metadata/1.29.3-ubuntu24.04.md -------------------------------------------------------------------------------- /fossa-deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/fossa-deps.yml -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /nginx/1.17.10/alpine/3.10.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.17.10/alpine/3.10.5/Dockerfile -------------------------------------------------------------------------------- /nginx/1.17.10/alpine/3.11.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.17.10/alpine/3.11.5/Dockerfile -------------------------------------------------------------------------------- /nginx/1.17.10/alpine/3.11.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.17.10/alpine/3.11.6/Dockerfile -------------------------------------------------------------------------------- /nginx/1.17.10/alpine/3.12.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.17.10/alpine/3.12.0/Dockerfile -------------------------------------------------------------------------------- /nginx/1.17.10/debian/10.2-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.17.10/debian/10.3-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.17.10/debian/10.4-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.17.10/debian/8.11-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.17.10/debian/9.12-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.17.10/fedora/29/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.17.10/fedora/29/Dockerfile -------------------------------------------------------------------------------- /nginx/1.17.10/fedora/29/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.17.10/fedora/29/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.17.10/fedora/29/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.17.10/fedora/30/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.17.10/fedora/30/Dockerfile -------------------------------------------------------------------------------- /nginx/1.17.10/fedora/30/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.17.10/fedora/30/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.17.10/fedora/30/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.17.10/fedora/31/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.17.10/fedora/31/Dockerfile -------------------------------------------------------------------------------- /nginx/1.17.10/fedora/31/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.17.10/fedora/31/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.17.10/fedora/31/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.17.10/fedora/32/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.17.10/fedora/32/Dockerfile -------------------------------------------------------------------------------- /nginx/1.17.10/fedora/32/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.17.10/fedora/33/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.17.10/fedora/33/Dockerfile -------------------------------------------------------------------------------- /nginx/1.17.10/fedora/33/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.17.10/ubuntu/18.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.17.10/ubuntu/18.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.17.10/ubuntu/18.04/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.17.10/ubuntu/19.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.17.10/ubuntu/19.10/Dockerfile -------------------------------------------------------------------------------- /nginx/1.17.10/ubuntu/19.10/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.17.10/ubuntu/20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.17.10/ubuntu/20.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.17.10/ubuntu/20.04/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.17.10/ubuntu/20.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.17.10/ubuntu/20.10/Dockerfile -------------------------------------------------------------------------------- /nginx/1.17.10/ubuntu/20.10/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.18.0/alpine/3.10.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.18.0/alpine/3.10.5/Dockerfile -------------------------------------------------------------------------------- /nginx/1.18.0/alpine/3.11.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.18.0/alpine/3.11.5/Dockerfile -------------------------------------------------------------------------------- /nginx/1.18.0/alpine/3.11.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.18.0/alpine/3.11.6/Dockerfile -------------------------------------------------------------------------------- /nginx/1.18.0/alpine/3.12.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.18.0/alpine/3.12.0/Dockerfile -------------------------------------------------------------------------------- /nginx/1.18.0/centos/7.8.2003/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.18.0/centos/7.8.2003/Dockerfile -------------------------------------------------------------------------------- /nginx/1.18.0/centos/8.1.1911/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.18.0/centos/8.1.1911/Dockerfile -------------------------------------------------------------------------------- /nginx/1.18.0/centos/8.2.2004/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.18.0/centos/8.2.2004/Dockerfile -------------------------------------------------------------------------------- /nginx/1.18.0/debian/10.2-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.18.0/debian/10.3-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.18.0/debian/10.4-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.18.0/debian/8.11-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.18.0/debian/9.12-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.18.0/fedora/29/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.18.0/fedora/29/Dockerfile -------------------------------------------------------------------------------- /nginx/1.18.0/fedora/29/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.18.0/fedora/29/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.18.0/fedora/29/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.18.0/fedora/30/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.18.0/fedora/30/Dockerfile -------------------------------------------------------------------------------- /nginx/1.18.0/fedora/30/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.18.0/fedora/30/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.18.0/fedora/30/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.18.0/fedora/31/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.18.0/fedora/31/Dockerfile -------------------------------------------------------------------------------- /nginx/1.18.0/fedora/31/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.18.0/fedora/31/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.18.0/fedora/31/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.18.0/fedora/32/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.18.0/fedora/32/Dockerfile -------------------------------------------------------------------------------- /nginx/1.18.0/fedora/32/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.18.0/fedora/33/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.18.0/fedora/33/Dockerfile -------------------------------------------------------------------------------- /nginx/1.18.0/fedora/33/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.18.0/ubuntu/18.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.18.0/ubuntu/18.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.18.0/ubuntu/18.04/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.18.0/ubuntu/19.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.18.0/ubuntu/19.10/Dockerfile -------------------------------------------------------------------------------- /nginx/1.18.0/ubuntu/19.10/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.18.0/ubuntu/20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.18.0/ubuntu/20.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.18.0/ubuntu/20.04/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.18.0/ubuntu/20.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.18.0/ubuntu/20.10/Dockerfile -------------------------------------------------------------------------------- /nginx/1.18.0/ubuntu/20.10/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.0/alpine/3.10.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.0/alpine/3.10.5/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.0/alpine/3.11.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.0/alpine/3.11.5/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.0/alpine/3.11.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.0/alpine/3.11.6/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.0/alpine/3.12.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.0/alpine/3.12.0/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.0/centos/7.8.2003/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.0/centos/7.8.2003/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.0/centos/8.1.1911/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.0/centos/8.1.1911/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.0/centos/8.2.2004/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.0/centos/8.2.2004/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.0/debian/10.2-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.0/debian/10.3-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.0/debian/10.4-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.0/debian/8.11-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.0/debian/9.12-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.0/fedora/29/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.0/fedora/29/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.0/fedora/29/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.0/fedora/29/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.0/fedora/29/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.0/fedora/30/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.0/fedora/30/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.0/fedora/30/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.0/fedora/30/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.0/fedora/30/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.0/fedora/31/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.0/fedora/31/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.0/fedora/31/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.0/fedora/31/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.0/fedora/31/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.0/fedora/32/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.0/fedora/32/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.0/fedora/32/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.0/fedora/32/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.0/fedora/32/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.0/fedora/33/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.0/fedora/33/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.0/fedora/33/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.0/ubuntu/18.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.0/ubuntu/18.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.0/ubuntu/18.04/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.0/ubuntu/19.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.0/ubuntu/19.10/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.0/ubuntu/19.10/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.0/ubuntu/20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.0/ubuntu/20.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.0/ubuntu/20.04/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.0/ubuntu/20.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.0/ubuntu/20.10/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.0/ubuntu/20.10/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.1/alpine/3.11.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.1/alpine/3.11.6/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.1/alpine/3.12.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.1/alpine/3.12.0/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.1/centos/8.1.1911/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.1/centos/8.1.1911/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.1/centos/8.2.2004/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.1/centos/8.2.2004/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.1/debian/10.3-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.1/debian/10.4-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.1/debian/10.5-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.1/fedora/32/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.1/fedora/32/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.1/fedora/32/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.1/fedora/32/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.1/fedora/32/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.1/fedora/33/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.1/fedora/33/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.1/fedora/33/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.1/ubuntu/20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.1/ubuntu/20.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.1/ubuntu/20.04/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.1/ubuntu/20.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.1/ubuntu/20.10/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.1/ubuntu/20.10/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.10/alpine/3.13.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.10/alpine/3.13.4/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.10/alpine/3.13.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.10/alpine/3.13.5/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.10/debian/10.9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.10/debian/10.9/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.10/debian/10.9/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.10/debian/10.9/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.10/fedora/33/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.10/fedora/33/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.10/fedora/33/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.10/fedora/33/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.10/fedora/33/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.10/fedora/33/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.10/ubuntu/20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.10/ubuntu/20.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.10/ubuntu/20.04/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.10/ubuntu/20.04/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.2/alpine/3.11.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.2/alpine/3.11.6/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.2/alpine/3.12.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.2/alpine/3.12.0/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.2/centos/8.1.1911/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.2/centos/8.1.1911/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.2/centos/8.2.2004/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.2/centos/8.2.2004/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.2/debian/10.4-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.2/debian/10.5-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.2/fedora/32/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.2/fedora/32/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.2/fedora/32/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.2/fedora/33/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.2/fedora/33/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.2/fedora/33/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.2/fedora/33/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.2/fedora/33/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.2/fedora/34/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.2/fedora/34/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.2/fedora/34/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.2/ubuntu/20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.2/ubuntu/20.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.2/ubuntu/20.04/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.2/ubuntu/20.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.2/ubuntu/20.10/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.2/ubuntu/20.10/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.3/alpine/3.11.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.3/alpine/3.11.6/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.3/alpine/3.12.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.3/alpine/3.12.0/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.3/alpine/3.12.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.3/alpine/3.12.1/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.3/alpine/3.12.1/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.3/alpine/3.12.1/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.3/centos/8.1.1911/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.3/centos/8.1.1911/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.3/centos/8.2.2004/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.3/centos/8.2.2004/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.3/centos/8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.3/centos/8/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.3/debian/10.4-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.3/debian/10.5-slim/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.3/debian/10.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.3/debian/10.6/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.3/debian/10.6/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.3/debian/10.6/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.3/debian/10.6/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.3/debian/10.6/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.3/fedora/33/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.3/fedora/33/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.3/fedora/33/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.3/fedora/33/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.3/fedora/33/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.3/fedora/33/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.3/fedora/34/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.3/fedora/34/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.3/fedora/34/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.3/fedora/34/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.3/fedora/34/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.3/fedora/34/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.3/ubuntu/20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.3/ubuntu/20.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.3/ubuntu/20.04/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.3/ubuntu/20.04/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.3/ubuntu/20.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.3/ubuntu/20.10/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.3/ubuntu/20.10/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.3/ubuntu/20.10/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.4/alpine/3.12.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.4/alpine/3.12.1/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.4/alpine/3.12.1/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.4/alpine/3.12.1/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.4/centos/8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.4/centos/8/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.4/debian/10.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.4/debian/10.6/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.4/debian/10.6/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.4/debian/10.6/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.4/debian/10.6/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.4/debian/10.6/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.4/fedora/33/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.4/fedora/33/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.4/fedora/33/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.4/fedora/33/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.4/fedora/33/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.4/fedora/33/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.4/ubuntu/20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.4/ubuntu/20.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.4/ubuntu/20.04/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.4/ubuntu/20.04/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.5/alpine/3.12.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.5/alpine/3.12.1/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.5/alpine/3.12.1/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.5/alpine/3.12.1/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.5/alpine/3.12.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.5/alpine/3.12.2/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.5/alpine/3.12.2/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.5/alpine/3.12.2/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.5/centos/8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.5/centos/8/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.5/debian/10.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.5/debian/10.6/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.5/debian/10.6/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.5/debian/10.6/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.5/debian/10.6/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.5/debian/10.6/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.5/debian/10.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.5/debian/10.7/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.5/debian/10.7/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.5/debian/10.7/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.5/debian/10.7/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.5/debian/10.7/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.5/fedora/33/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.5/fedora/33/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.5/fedora/33/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.5/fedora/33/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.5/fedora/33/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.5/fedora/33/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.5/ubuntu/20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.5/ubuntu/20.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.5/ubuntu/20.04/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.6/alpine/3.12.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.6/alpine/3.12.2/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.6/alpine/3.12.2/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.6/alpine/3.12.2/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.6/alpine/3.12.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.6/alpine/3.12.3/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.6/alpine/3.12.3/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.6/alpine/3.12.3/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.6/alpine/3.13.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.6/alpine/3.13.0/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.6/alpine/3.13.0/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.6/alpine/3.13.0/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.6/alpine/3.13.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.6/alpine/3.13.1/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.6/alpine/3.13.1/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.6/alpine/3.13.1/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.6/centos/8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.6/centos/8/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.6/debian/10.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.6/debian/10.7/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.6/debian/10.7/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.6/debian/10.7/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.6/debian/10.7/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.6/debian/10.7/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.6/debian/10.8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.6/debian/10.8/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.6/debian/10.8/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.6/debian/10.8/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.6/debian/10.8/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.6/debian/10.8/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.6/fedora/33/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.6/fedora/33/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.6/fedora/33/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.6/fedora/33/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.6/fedora/33/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.6/fedora/33/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.6/ubuntu/20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.6/ubuntu/20.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.6/ubuntu/20.04/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.7/alpine/3.13.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.7/alpine/3.13.2/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.7/alpine/3.13.2/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.7/alpine/3.13.2/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.7/debian/10.8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.7/debian/10.8/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.7/debian/10.8/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.7/debian/10.8/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.7/debian/10.8/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.7/debian/10.8/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.7/fedora/33/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.7/fedora/33/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.7/fedora/33/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.7/fedora/33/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.7/fedora/33/tpl/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.7/fedora/33/tpl/default.conf -------------------------------------------------------------------------------- /nginx/1.19.7/fedora/33/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.7/fedora/33/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.7/ubuntu/20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.7/ubuntu/20.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.7/ubuntu/20.04/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.8/alpine/3.13.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.8/alpine/3.13.2/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.8/alpine/3.13.2/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.8/alpine/3.13.2/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.8/alpine/3.13.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.8/alpine/3.13.3/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.8/alpine/3.13.3/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.8/alpine/3.13.3/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.8/debian/10.8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.8/debian/10.8/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.8/debian/10.8/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.8/debian/10.8/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.8/debian/10.8/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.8/debian/10.8/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.8/fedora/33/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.8/fedora/33/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.8/fedora/33/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.8/fedora/33/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.8/fedora/33/tpl/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.8/fedora/33/tpl/default.conf -------------------------------------------------------------------------------- /nginx/1.19.8/fedora/33/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.8/fedora/33/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.8/ubuntu/20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.8/ubuntu/20.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.8/ubuntu/20.04/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.19.9/alpine/3.13.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.9/alpine/3.13.3/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.9/alpine/3.13.3/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.9/alpine/3.13.3/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.9/alpine/3.13.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.9/alpine/3.13.4/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.9/alpine/3.13.4/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.9/alpine/3.13.4/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.9/debian/10.9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.9/debian/10.9/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.9/debian/10.9/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.9/debian/10.9/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.9/debian/10.9/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.9/debian/10.9/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.9/fedora/33/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.9/fedora/33/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.9/fedora/33/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.9/fedora/33/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.19.9/fedora/33/tpl/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.9/fedora/33/tpl/default.conf -------------------------------------------------------------------------------- /nginx/1.19.9/fedora/33/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.9/fedora/33/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.19.9/ubuntu/20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.19.9/ubuntu/20.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.19.9/ubuntu/20.04/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.20.0/alpine/3.13.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.20.0/alpine/3.13.5/Dockerfile -------------------------------------------------------------------------------- /nginx/1.20.0/alpine/3.13.5/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.20.0/alpine/3.13.5/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.20.0/debian/10.9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.20.0/debian/10.9/Dockerfile -------------------------------------------------------------------------------- /nginx/1.20.0/debian/10.9/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.20.0/debian/10.9/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.20.0/debian/10.9/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.20.0/debian/10.9/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.20.0/fedora/33/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.20.0/fedora/33/Dockerfile -------------------------------------------------------------------------------- /nginx/1.20.0/fedora/33/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.20.0/fedora/33/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.20.0/fedora/33/tpl/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.20.0/fedora/33/tpl/default.conf -------------------------------------------------------------------------------- /nginx/1.20.0/fedora/33/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.20.0/fedora/33/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.20.0/fedora/34/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.20.0/fedora/34/Dockerfile -------------------------------------------------------------------------------- /nginx/1.20.0/fedora/34/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.20.0/fedora/34/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.20.0/fedora/34/tpl/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.20.0/fedora/34/tpl/default.conf -------------------------------------------------------------------------------- /nginx/1.20.0/fedora/34/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.20.0/fedora/34/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.20.0/ubuntu/20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.20.0/ubuntu/20.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.20.0/ubuntu/20.04/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.21.0/alpine/3.13.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.0/alpine/3.13.5/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.0/alpine/3.13.5/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.0/alpine/3.13.5/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.21.0/alpine/3.14.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.0/alpine/3.14.0/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.0/alpine/3.14.0/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.0/alpine/3.14.0/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.21.0/debian/10.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.0/debian/10.10/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.0/debian/10.10/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.0/debian/10.10/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.21.0/debian/10.9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.0/debian/10.9/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.0/debian/10.9/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.0/debian/10.9/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.21.0/debian/10.9/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.0/debian/10.9/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.21.0/fedora/34/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.0/fedora/34/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.0/fedora/34/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.0/fedora/34/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.21.0/fedora/34/tpl/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.0/fedora/34/tpl/default.conf -------------------------------------------------------------------------------- /nginx/1.21.0/fedora/34/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.0/fedora/34/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.21.0/ubuntu/20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.0/ubuntu/20.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.0/ubuntu/20.04/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.21.1/alpine/3.14.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.1/alpine/3.14.0/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.1/alpine/3.14.0/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.1/alpine/3.14.0/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.21.1/alpine/3.14.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.1/alpine/3.14.1/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.1/alpine/3.14.1/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.1/alpine/3.14.1/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.21.1/alpine/3.14.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.1/alpine/3.14.2/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.1/alpine/3.14.2/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.1/alpine/3.14.2/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.21.1/debian/10.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.1/debian/10.10/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.1/debian/10.10/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.1/debian/10.10/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.21.1/debian/11.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.1/debian/11.0/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.1/debian/11.0/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.1/debian/11.0/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.21.1/debian/11.0/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.1/debian/11.0/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.21.1/fedora/34/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.1/fedora/34/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.1/fedora/34/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.1/fedora/34/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.21.1/fedora/34/tpl/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.1/fedora/34/tpl/default.conf -------------------------------------------------------------------------------- /nginx/1.21.1/fedora/34/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.1/fedora/34/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.21.1/ubuntu/20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.1/ubuntu/20.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.1/ubuntu/20.04/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.21.3/alpine/3.14.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.3/alpine/3.14.2/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.3/alpine/3.14.2/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.3/alpine/3.14.2/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.21.3/debian/11.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.3/debian/11.0/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.3/debian/11.0/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.3/debian/11.0/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.21.3/debian/11.0/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.3/debian/11.0/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.21.3/debian/11.0/tpl/support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.3/debian/11.0/tpl/support.sh -------------------------------------------------------------------------------- /nginx/1.21.3/debian/11.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.3/debian/11.1/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.3/debian/11.1/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.3/debian/11.1/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.21.3/debian/11.1/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.3/debian/11.1/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.21.3/debian/11.1/tpl/support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.3/debian/11.1/tpl/support.sh -------------------------------------------------------------------------------- /nginx/1.21.3/fedora/34/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.3/fedora/34/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.3/fedora/34/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.3/fedora/34/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.21.3/fedora/34/tpl/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.3/fedora/34/tpl/default.conf -------------------------------------------------------------------------------- /nginx/1.21.3/fedora/34/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.3/fedora/34/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.21.3/fedora/34/tpl/support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.3/fedora/34/tpl/support.sh -------------------------------------------------------------------------------- /nginx/1.21.3/fedora/35/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.3/fedora/35/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.3/fedora/35/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.3/fedora/35/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.21.3/fedora/35/tpl/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.3/fedora/35/tpl/default.conf -------------------------------------------------------------------------------- /nginx/1.21.3/fedora/35/tpl/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.3/fedora/35/tpl/nginx.conf -------------------------------------------------------------------------------- /nginx/1.21.3/fedora/35/tpl/support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.3/fedora/35/tpl/support.sh -------------------------------------------------------------------------------- /nginx/1.21.3/ubuntu/20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.3/ubuntu/20.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.3/ubuntu/20.04/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.21.4/alpine/3.14.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.4/alpine/3.14.2/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.4/alpine/3.14.2/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.4/alpine/3.14.2/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.21.4/alpine/3.14.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.4/alpine/3.14.3/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.4/alpine/3.14.3/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.4/alpine/3.14.3/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.21.4/amazonlinux/2.0.20211201.0/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.21.4/debian/11.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.4/debian/11.1/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.4/debian/11.1/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.21.4/debian/11.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.4/debian/11.2/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.4/debian/11.2/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.21.4/fedora/35/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.4/fedora/35/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.4/fedora/35/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.21.4/ubuntu/20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.4/ubuntu/20.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.4/ubuntu/20.04/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.21.5/amazonlinux/2.0.20211201.0/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.21.5/amazonlinux/2.0.20211223.0/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.21.5/debian/11.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.5/debian/11.2/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.5/debian/11.2/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.21.5/fedora/35/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.5/fedora/35/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.5/fedora/35/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.21.5/ubuntu/20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.5/ubuntu/20.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.5/ubuntu/20.04/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.21.6/alpine/3.15/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.6/alpine/3.15/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.6/amazonlinux/2.0.20211223.0/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.21.6/amazonlinux/2.0.20220121.0/tpl/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/1.21.6/debian/11.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.6/debian/11.2/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.6/debian/11.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.6/debian/11.3/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.6/fedora/35/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.6/fedora/35/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.6/fedora/35/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.6/fedora/35/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.21.6/fedora/36/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.6/fedora/36/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.6/fedora/36/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.6/fedora/36/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.21.6/ubuntu/20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.6/ubuntu/20.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.21.6/ubuntu/22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.21.6/ubuntu/22.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.22.0/debian/11.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.22.0/debian/11.3/Dockerfile -------------------------------------------------------------------------------- /nginx/1.22.0/fedora/36/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.22.0/fedora/36/Dockerfile -------------------------------------------------------------------------------- /nginx/1.22.0/fedora/36/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.22.0/fedora/36/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.22.0/ubuntu/22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.22.0/ubuntu/22.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.23.0/debian/11.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.0/debian/11.3/Dockerfile -------------------------------------------------------------------------------- /nginx/1.23.0/debian/11.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.0/debian/11.4/Dockerfile -------------------------------------------------------------------------------- /nginx/1.23.0/fedora/36/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.0/fedora/36/Dockerfile -------------------------------------------------------------------------------- /nginx/1.23.0/fedora/36/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.0/fedora/36/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.23.0/ubuntu/22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.0/ubuntu/22.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.23.1/debian/11.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.1/debian/11.4/Dockerfile -------------------------------------------------------------------------------- /nginx/1.23.1/debian/11.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.1/debian/11.5/Dockerfile -------------------------------------------------------------------------------- /nginx/1.23.1/fedora/36/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.1/fedora/36/Dockerfile -------------------------------------------------------------------------------- /nginx/1.23.1/fedora/36/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.1/fedora/36/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.23.1/ubuntu/22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.1/ubuntu/22.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.23.2/debian/11.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.2/debian/11.5/Dockerfile -------------------------------------------------------------------------------- /nginx/1.23.2/fedora/36/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.2/fedora/36/Dockerfile -------------------------------------------------------------------------------- /nginx/1.23.2/fedora/36/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.2/fedora/36/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.23.2/fedora/37/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.2/fedora/37/Dockerfile -------------------------------------------------------------------------------- /nginx/1.23.2/fedora/37/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.2/fedora/37/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.23.2/ubuntu/22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.2/ubuntu/22.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.23.3/debian/11.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.3/debian/11.5/Dockerfile -------------------------------------------------------------------------------- /nginx/1.23.3/debian/11.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.3/debian/11.6/Dockerfile -------------------------------------------------------------------------------- /nginx/1.23.3/fedora/37/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.3/fedora/37/Dockerfile -------------------------------------------------------------------------------- /nginx/1.23.3/fedora/37/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.3/fedora/37/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.23.3/fedora/37/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.3/fedora/37/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.23.3/ubuntu/22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.3/ubuntu/22.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.23.4/debian/11.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.4/debian/11.6/Dockerfile -------------------------------------------------------------------------------- /nginx/1.23.4/debian/11.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.4/debian/11.7/Dockerfile -------------------------------------------------------------------------------- /nginx/1.23.4/fedora/37/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.4/fedora/37/Dockerfile -------------------------------------------------------------------------------- /nginx/1.23.4/fedora/37/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.4/fedora/37/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.23.4/fedora/37/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.4/fedora/37/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.23.4/fedora/38/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.4/fedora/38/Dockerfile -------------------------------------------------------------------------------- /nginx/1.23.4/fedora/38/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.4/fedora/38/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.23.4/fedora/38/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.4/fedora/38/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.23.4/ubuntu/22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.23.4/ubuntu/22.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.0/debian/11.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.0/debian/11.7/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.0/debian/12.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.0/debian/12.0/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.0/fedora/38/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.0/fedora/38/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.0/fedora/38/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.0/fedora/38/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.25.0/fedora/38/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.0/fedora/38/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.25.0/ubuntu/22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.0/ubuntu/22.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.1/debian/12.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.1/debian/12.0/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.1/debian/12.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.1/debian/12.1/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.1/fedora/38/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.1/fedora/38/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.1/fedora/38/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.1/fedora/38/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.25.1/fedora/38/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.1/fedora/38/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.25.1/ubuntu/22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.1/ubuntu/22.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.2/debian/12.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.2/debian/12.1/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.2/debian/12.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.2/debian/12.2/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.2/fedora/38/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.2/fedora/38/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.2/fedora/38/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.2/fedora/38/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.25.2/fedora/38/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.2/fedora/38/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.25.2/ubuntu/22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.2/ubuntu/22.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.3/debian/12.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.3/debian/12.2/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.3/debian/12.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.3/debian/12.4/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.3/debian/12.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.3/debian/12.5/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.3/fedora/38/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.3/fedora/38/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.3/fedora/38/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.3/fedora/38/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.25.3/fedora/38/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.3/fedora/38/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.25.3/fedora/39/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.3/fedora/39/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.3/fedora/39/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.3/fedora/39/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.25.3/fedora/39/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.3/fedora/39/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.25.3/ubuntu/22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.3/ubuntu/22.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.4/debian/12.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.4/debian/12.5/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.4/fedora/39/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.4/fedora/39/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.4/fedora/39/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.4/fedora/39/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.25.4/fedora/39/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.4/fedora/39/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.25.4/ubuntu/22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.4/ubuntu/22.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.5/debian/12.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.5/debian/12.5/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.5/fedora/40/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.5/fedora/40/Dockerfile -------------------------------------------------------------------------------- /nginx/1.25.5/fedora/40/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.5/fedora/40/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.25.5/fedora/40/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.5/fedora/40/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.25.5/ubuntu/24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.25.5/ubuntu/24.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.0/debian/12.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.0/debian/12.5/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.0/debian/12.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.0/debian/12.6/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.0/fedora/40/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.0/fedora/40/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.0/fedora/40/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.0/fedora/40/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.27.0/fedora/40/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.0/fedora/40/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.27.0/ubuntu/24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.0/ubuntu/24.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.1/debian/12.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.1/debian/12.6/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.1/debian/12.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.1/debian/12.7/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.1/fedora/40/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.1/fedora/40/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.1/fedora/40/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.1/fedora/40/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.27.1/fedora/40/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.1/fedora/40/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.27.1/ubuntu/24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.1/ubuntu/24.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.2/debian/12.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.2/debian/12.7/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.2/debian/12.8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.2/debian/12.8/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.2/fedora/40/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.2/fedora/40/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.2/fedora/40/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.2/fedora/40/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.27.2/fedora/40/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.2/fedora/40/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.27.2/fedora/41/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.2/fedora/41/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.2/fedora/41/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.2/fedora/41/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.27.2/fedora/41/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.2/fedora/41/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.27.2/ubuntu/24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.2/ubuntu/24.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.3/debian/12.8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.3/debian/12.8/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.3/debian/12.9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.3/debian/12.9/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.3/fedora/41/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.3/fedora/41/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.3/fedora/41/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.3/fedora/41/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.27.3/fedora/41/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.3/fedora/41/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.27.3/ubuntu/24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.3/ubuntu/24.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.4/debian/12.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.4/debian/12.10/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.4/debian/12.9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.4/debian/12.9/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.4/fedora/41/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.4/fedora/41/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.4/fedora/41/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.4/fedora/41/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.27.4/fedora/41/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.4/fedora/41/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.27.4/fedora/42/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.4/fedora/42/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.4/fedora/42/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.4/fedora/42/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.27.4/fedora/42/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.4/fedora/42/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.27.4/ubuntu/24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.4/ubuntu/24.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.5/debian/12.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.5/debian/12.10/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.5/debian/12.11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.5/debian/12.11/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.5/fedora/42/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.5/fedora/42/Dockerfile -------------------------------------------------------------------------------- /nginx/1.27.5/fedora/42/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.5/fedora/42/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.27.5/fedora/42/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.5/fedora/42/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.27.5/ubuntu/24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.27.5/ubuntu/24.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.28.0/debian/13.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.28.0/debian/13.0/Dockerfile -------------------------------------------------------------------------------- /nginx/1.28.0/debian/13.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.28.0/debian/13.1/Dockerfile -------------------------------------------------------------------------------- /nginx/1.28.0/debian/13.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.28.0/debian/13.2/Dockerfile -------------------------------------------------------------------------------- /nginx/1.28.0/fedora/42/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.28.0/fedora/42/Dockerfile -------------------------------------------------------------------------------- /nginx/1.28.0/fedora/42/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.28.0/fedora/42/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.28.0/fedora/42/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.28.0/fedora/42/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.28.0/ubuntu/24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.28.0/ubuntu/24.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.29.0/debian/12.11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.0/debian/12.11/Dockerfile -------------------------------------------------------------------------------- /nginx/1.29.0/fedora/42/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.0/fedora/42/Dockerfile -------------------------------------------------------------------------------- /nginx/1.29.0/fedora/42/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.0/fedora/42/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.29.0/fedora/42/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.0/fedora/42/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.29.0/ubuntu/24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.0/ubuntu/24.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.29.1/debian/13.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.1/debian/13.0/Dockerfile -------------------------------------------------------------------------------- /nginx/1.29.1/debian/13.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.1/debian/13.1/Dockerfile -------------------------------------------------------------------------------- /nginx/1.29.1/fedora/42/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.1/fedora/42/Dockerfile -------------------------------------------------------------------------------- /nginx/1.29.1/fedora/42/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.1/fedora/42/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.29.1/fedora/42/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.1/fedora/42/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.29.1/ubuntu/24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.1/ubuntu/24.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.29.2/debian/13.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.2/debian/13.1/Dockerfile -------------------------------------------------------------------------------- /nginx/1.29.2/fedora/42/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.2/fedora/42/Dockerfile -------------------------------------------------------------------------------- /nginx/1.29.2/fedora/42/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.2/fedora/42/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.29.2/fedora/42/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.2/fedora/42/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.29.2/ubuntu/24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.2/ubuntu/24.04/Dockerfile -------------------------------------------------------------------------------- /nginx/1.29.3/debian/13.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.3/debian/13.1/Dockerfile -------------------------------------------------------------------------------- /nginx/1.29.3/debian/13.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.3/debian/13.2/Dockerfile -------------------------------------------------------------------------------- /nginx/1.29.3/fedora/42/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.3/fedora/42/Dockerfile -------------------------------------------------------------------------------- /nginx/1.29.3/fedora/42/tpl/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.3/fedora/42/tpl/.env.dist -------------------------------------------------------------------------------- /nginx/1.29.3/fedora/42/tpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.3/fedora/42/tpl/Makefile -------------------------------------------------------------------------------- /nginx/1.29.3/ubuntu/24.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/nginx/1.29.3/ubuntu/24.04/Dockerfile -------------------------------------------------------------------------------- /src/.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/.env.dist -------------------------------------------------------------------------------- /src/10-listen-on-ipv6-by-default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/10-listen-on-ipv6-by-default.sh -------------------------------------------------------------------------------- /src/15-local-resolvers.envsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/15-local-resolvers.envsh -------------------------------------------------------------------------------- /src/20-envsubst-on-templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/20-envsubst-on-templates.sh -------------------------------------------------------------------------------- /src/30-tune-worker-processes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/30-tune-worker-processes.sh -------------------------------------------------------------------------------- /src/Dockerfile.almalinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/Dockerfile.almalinux -------------------------------------------------------------------------------- /src/Dockerfile.alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/Dockerfile.alpine -------------------------------------------------------------------------------- /src/Dockerfile.amazonlinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/Dockerfile.amazonlinux -------------------------------------------------------------------------------- /src/Dockerfile.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/Dockerfile.debian -------------------------------------------------------------------------------- /src/Dockerfile.fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/Dockerfile.fedora -------------------------------------------------------------------------------- /src/Dockerfile.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/Dockerfile.ubuntu -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/default.conf -------------------------------------------------------------------------------- /src/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/docker-entrypoint.sh -------------------------------------------------------------------------------- /src/docker-entrypoint.sh.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/docker-entrypoint.sh.patch -------------------------------------------------------------------------------- /src/licenses/lua-resty-core.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/licenses/lua-resty-core.LICENSE -------------------------------------------------------------------------------- /src/licenses/lua-resty-dns.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/licenses/lua-resty-dns.LICENSE -------------------------------------------------------------------------------- /src/licenses/lua-resty-lock.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/licenses/lua-resty-lock.LICENSE -------------------------------------------------------------------------------- /src/licenses/lua-resty-mysql.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/licenses/lua-resty-mysql.LICENSE -------------------------------------------------------------------------------- /src/licenses/lua-resty-redis.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/licenses/lua-resty-redis.LICENSE -------------------------------------------------------------------------------- /src/licenses/lua-resty-shell.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/licenses/lua-resty-shell.LICENSE -------------------------------------------------------------------------------- /src/licenses/lua-tablepool.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/licenses/lua-tablepool.LICENSE -------------------------------------------------------------------------------- /src/licenses/luajit2.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/licenses/luajit2.LICENSE -------------------------------------------------------------------------------- /src/licenses/luarocks.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/licenses/luarocks.LICENSE -------------------------------------------------------------------------------- /src/licenses/ngx_devel_kit.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/licenses/ngx_devel_kit.LICENSE -------------------------------------------------------------------------------- /src/licenses/njs.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/licenses/njs.LICENSE -------------------------------------------------------------------------------- /src/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/nginx.conf -------------------------------------------------------------------------------- /src/packages/Dockerfile.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/packages/Dockerfile.apk -------------------------------------------------------------------------------- /src/packages/Dockerfile.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/packages/Dockerfile.deb -------------------------------------------------------------------------------- /src/packages/Dockerfile.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/packages/Dockerfile.rpm -------------------------------------------------------------------------------- /src/packages/after-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/packages/after-install.sh -------------------------------------------------------------------------------- /src/support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/src/support.sh -------------------------------------------------------------------------------- /supported_versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/supported_versions -------------------------------------------------------------------------------- /test/artillery-almalinux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/test/artillery-almalinux.yml -------------------------------------------------------------------------------- /test/artillery-alpine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/test/artillery-alpine.yml -------------------------------------------------------------------------------- /test/artillery-amazonlinux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/test/artillery-amazonlinux.yml -------------------------------------------------------------------------------- /test/artillery-debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/test/artillery-debian.yml -------------------------------------------------------------------------------- /test/artillery-fedora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/test/artillery-fedora.yml -------------------------------------------------------------------------------- /test/artillery-nginx-lua.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/test/artillery-nginx-lua.yml -------------------------------------------------------------------------------- /test/artillery-nginx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/test/artillery-nginx.yml -------------------------------------------------------------------------------- /test/artillery-openresty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/test/artillery-openresty.yml -------------------------------------------------------------------------------- /test/artillery-ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/test/artillery-ubuntu.yml -------------------------------------------------------------------------------- /test/nginx-lua.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/test/nginx-lua.conf -------------------------------------------------------------------------------- /test/nginx-non-lua.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/test/nginx-non-lua.conf -------------------------------------------------------------------------------- /test/tests.conf.d/geoip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/test/tests.conf.d/geoip.conf -------------------------------------------------------------------------------- /test/tests.conf.d/lua-cjson.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/test/tests.conf.d/lua-cjson.conf -------------------------------------------------------------------------------- /test/tests.conf.d/lua-resty-dns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/test/tests.conf.d/lua-resty-dns.conf -------------------------------------------------------------------------------- /test/tests.conf.d/lua-tablepool.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocicerchia/nginx-lua/HEAD/test/tests.conf.d/lua-tablepool.conf -------------------------------------------------------------------------------- /tpl: -------------------------------------------------------------------------------- 1 | src --------------------------------------------------------------------------------