├── .ci └── setup_ci.sh ├── .dockerignore ├── .github ├── dependabot.yml └── workflows │ └── release.yaml ├── .gitignore ├── .gitmodules ├── .releaserc ├── .rpmmacros ├── Jenkinsfile ├── LICENSE ├── Makefile ├── README.md ├── after-install.sh ├── docker-compose.yml ├── dockerfiles ├── Dockerfile.kong ├── Dockerfile.openresty ├── Dockerfile.package └── Dockerfile.scratch ├── docs ├── Package Kong.png ├── README.md ├── Release Kong.png └── Test Kong.png ├── fpm-entrypoint.sh ├── grep-kong-version.sh ├── id_rsa ├── kong.logrotate ├── kong.private.gpg-key.asc ├── kong.service ├── nginx.vh.default.conf ├── openresty-build-tools ├── .gitignore ├── README.md ├── common.sh ├── kong-ngx-build ├── patches │ ├── nginx-1.11.2-cve_2018_16843_cve_2018_16844.patch │ ├── nginx-1.11.2-cve_2019_9511_cve_2019_9513_cve_2019_9516.patch │ ├── nginx-1.11.2-rm_glibc_crypt_r_workaround.patch │ ├── nginx-1.13.6-cve_2018_16843_cve_2018_16844.patch │ ├── nginx-1.13.6-cve_2019_9511_cve_2019_9513_cve_2019_9516.patch │ ├── nginx-1.13.6-rm_glibc_crypt_r_workaround.patch │ ├── nginx-1.15.8-cve_2019_9511_cve_2019_9513_cve_2019_9516.patch │ ├── nginx-patch.2018.mp4.txt │ └── openresty-1.15.8.x-fix_static_libpcre_linking.patch └── t │ ├── 001_test_version.sh │ └── 002_parse_nginx_core_version.sh ├── openresty-patches ├── README.md ├── patches │ ├── 1.13.6.1 │ │ ├── lua-resty-core-0.1.13_01-ssl-ctx.patch │ │ ├── nginx-1.13.6_01-upstream_client_certificate.patch │ │ ├── ngx_lua-0.10.11_01-ssl-ctx.patch │ │ └── ngx_lua-0.10.11_02-ssl-pointer.patch │ ├── 1.13.6.2 │ │ ├── LuaJIT-2.1-20180420_01-fix-tab-rechaining.patch │ │ ├── lua-resty-core-0.1.15_01-semaphore.patch │ │ ├── lua-resty-core-0.1.15_02-ssl-ctx.patch │ │ ├── lua-resty-core-0.1.15_03-ssl-cert.patch │ │ ├── lua-resty-core-0.1.15_04-ssl-pointer.patch │ │ ├── lua-resty-core-0.1.15_05-fix-global-misuses.patch │ │ ├── lua-resty-core-0.1.15_06-errlog.patch │ │ ├── lua-resty-core-0.1.15_07-stream-re.patch │ │ ├── lua-resty-core-0.1.15_08-pcre-map-jit.patch │ │ ├── nginx-1.13.6_01-stream-tls.patch │ │ ├── nginx-1.13.6_02-listen-transparent.patch │ │ ├── nginx-1.13.6_03-log-tls.patch │ │ ├── nginx-1.13.6_04-chained-bio.patch │ │ ├── nginx-1.13.6_05-ssl-preread.patch │ │ ├── nginx-1.13.6_06-remove-glibc-crypt_r-bug-workaround.patch │ │ ├── nginx-1.13.6_07-upstream_client_certificate.patch │ │ ├── ngx_lua-0.10.13_01-ssl-ctx.patch │ │ ├── ngx_lua-0.10.13_02-ssl-pointer.patch │ │ ├── ngx_lua-0.10.13_03-server_conf.patch │ │ ├── ngx_stream_lua-0.0.5_01-ssl-ctx.patch │ │ ├── ngx_stream_lua-0.0.5_02-enable-ffi-api.patch │ │ ├── ngx_stream_lua-0.0.5_03-inject-req-time-api.patch │ │ ├── ngx_stream_lua-0.0.5_04-semaphore.patch │ │ ├── ngx_stream_lua-0.0.5_05-shdict.patch │ │ ├── ngx_stream_lua-0.0.5_06-ssl-cert.patch │ │ ├── ngx_stream_lua-0.0.5_07-errlog.patch │ │ └── ngx_stream_lua-0.0.5_08-starttls.patch │ ├── 1.15.8.1 │ │ ├── LuaJIT-2.1-20190507_01-fix-tab-rechaining.patch │ │ ├── LuaJIT-2.1-20190507_02-fix-arm-arithmetic-condition-codes.patch │ │ ├── LuaJIT-2.1-20190507_03-dyn-lightuserdata-map.patch │ │ ├── lua-resty-core-0.1.17_01-ssl-ctx.patch │ │ ├── lua-resty-core-0.1.17_02-ssl-pointer.patch │ │ ├── nginx-1.15.8_01-stream-tls.patch │ │ ├── nginx-1.15.8_02-listen-transparent.patch │ │ ├── nginx-1.15.8_03-log-tls.patch │ │ ├── nginx-1.15.8_04-chained-bio.patch │ │ ├── nginx-1.15.8_05-remove-server-tokens-from-special-responses-output.patch │ │ ├── nginx-1.15.8_06-upstream_client_certificate.patch │ │ ├── ngx_lua-0.10.15_01-ssl-ctx.patch │ │ ├── ngx_lua-0.10.15_02-ssl-pointer.patch │ │ ├── ngx_lua-0.10.15_03-server_conf.patch │ │ ├── ngx_stream_lua-0.0.7_01-ssl-ctx.patch │ │ ├── ngx_stream_lua-0.0.7_02-enable-ffi-api.patch │ │ ├── ngx_stream_lua-0.0.7_03-inject-req-time-api.patch │ │ └── ngx_stream_lua-0.0.7_04-starttls.patch │ ├── 1.15.8.2 │ │ ├── LuaJIT-2.1-20190507_01-fix-tab-rechaining.patch │ │ ├── LuaJIT-2.1-20190507_02-fix-arm-arithmetic-condition-codes.patch │ │ ├── LuaJIT-2.1-20190507_03-dyn-lightuserdata-map.patch │ │ ├── lua-resty-core-0.1.17_01-cosocket-mtls.patch │ │ ├── lua-resty-websocket-0.07_01-client-mtls.patch │ │ ├── nginx-1.15.8_01-upstream_client_certificate_and_ssl_verify.patch │ │ ├── nginx-1.15.8_02-remove-server-tokens-from-special-responses-output.patch │ │ ├── nginx-1.15.8_03-stream_proxy_ssl_disable.patch │ │ ├── ngx_lua-0.10.15_01-cosocket-mtls.patch │ │ ├── ngx_stream_lua-0.0.7_01-enable-ffi-api.patch │ │ ├── ngx_stream_lua-0.0.7_02-inject-req-time-api.patch │ │ └── ngx_stream_lua-0.0.7_03-expose_request_struct.patch │ ├── 1.15.8.3 │ │ ├── LuaJIT-2.1-20190507_01-fix-tab-rechaining.patch │ │ ├── LuaJIT-2.1-20190507_02-fix-arm-arithmetic-condition-codes.patch │ │ ├── LuaJIT-2.1-20190507_03-dyn-lightuserdata-map.patch │ │ ├── lua-resty-core-0.1.17_01-cosocket-mtls.patch │ │ ├── lua-resty-core-0.1.17_02-dyn_upstream_keepalive.patch │ │ ├── lua-resty-core-0.1.17_03-upstream_recreate_request.patch │ │ ├── lua-resty-core-0.1.17_04-hash_stream_subsystem.patch │ │ ├── lua-resty-core-0.1.17_05-ffi_crc32_api.patch │ │ ├── lua-resty-websocket-0.07_01-client-mtls.patch │ │ ├── nginx-1.15.8_01-upstream_client_certificate_and_ssl_verify.patch │ │ ├── nginx-1.15.8_02-remove-server-tokens-from-special-responses-output.patch │ │ ├── nginx-1.15.8_03-stream_proxy_ssl_disable.patch │ │ ├── ngx_lua-0.10.15_01-cosocket-mtls.patch │ │ ├── ngx_lua-0.10.15_02-dyn_upstream_keepalive.patch │ │ ├── ngx_lua-0.10.15_03-ffi_crc32_api.patch │ │ ├── ngx_lua-0.10.15_04-upstream_recreate_request.patch │ │ ├── ngx_stream_lua-0.0.7_01-enable-ffi-api.patch │ │ ├── ngx_stream_lua-0.0.7_02-inject-req-time-api.patch │ │ ├── ngx_stream_lua-0.0.7_03-expose_request_struct.patch │ │ └── ngx_stream_lua-0.0.7_04-ffi_crc32_api.patch │ ├── 1.17.8.1 │ │ ├── LuaJIT-2.1-20200102_01-dyn-lightuserdata-map.patch │ │ ├── lua-resty-core-0.1.19_01-cosocket-mtls.patch │ │ ├── lua-resty-core-0.1.19_02-dyn_upstream_keepalive.patch │ │ ├── lua-resty-core-0.1.19_03-upstream_recreate_request.patch │ │ ├── lua-resty-core-0.1.19_04-stream_req_start_time.patch │ │ ├── lua-resty-websocket-0.07_01-client-mtls.patch │ │ ├── nginx-1.17.8_01-upstream_client_certificate_and_ssl_verify.patch │ │ ├── nginx-1.17.8_02-remove-server-tokens-from-special-responses-output.patch │ │ ├── nginx-1.17.8_03-stream_proxy_ssl_disable.patch │ │ ├── ngx_lua-0.10.17_01-cosocket-mtls.patch │ │ ├── ngx_lua-0.10.17_02-dyn_upstream_keepalive.patch │ │ ├── ngx_lua-0.10.17_03-upstream_recreate_request.patch │ │ ├── ngx_stream_lua-0.0.8_02-expose_request_struct.patch │ │ └── resty-cli-0.25-fix_tmp_directory_deletion.patch │ ├── 1.17.8.2 │ │ ├── LuaJIT-2.1-20200102_01-dyn-lightuserdata-map.patch │ │ ├── lua-resty-core-0.1.19_01-cosocket-mtls.patch │ │ ├── lua-resty-core-0.1.19_02-dyn_upstream_keepalive.patch │ │ ├── lua-resty-core-0.1.19_03-upstream_recreate_request.patch │ │ ├── lua-resty-core-0.1.19_04-stream_req_start_time.patch │ │ ├── lua-resty-websocket-0.07_01-client-mtls.patch │ │ ├── nginx-1.17.8_01-upstream_client_certificate_and_ssl_verify.patch │ │ ├── nginx-1.17.8_02-remove-server-tokens-from-special-responses-output.patch │ │ ├── nginx-1.17.8_03-stream_proxy_ssl_disable.patch │ │ ├── nginx-1.17.8_04-grpc_authority_override.patch │ │ ├── ngx_lua-0.10.17_01-cosocket-mtls.patch │ │ ├── ngx_lua-0.10.17_02-dyn_upstream_keepalive.patch │ │ ├── ngx_lua-0.10.17_03-upstream_recreate_request.patch │ │ ├── ngx_lua-0.10.17_04-balancer_buffer.patch │ │ ├── ngx_stream_lua-0.0.8_02-expose_request_struct.patch │ │ └── resty-cli-0.25-fix_tmp_directory_deletion.patch │ ├── 1.19.3.1 │ │ ├── lua-resty-core-0.1.21_01-cosocket-mtls.patch │ │ ├── lua-resty-core-0.1.21_02-dyn_upstream_keepalive.patch │ │ ├── lua-resty-websocket-0.08_01-client-mtls.patch │ │ ├── nginx-1.19.3_01-upstream_client_certificate_and_ssl_verify.patch │ │ ├── nginx-1.19.3_02-remove-server-tokens-from-special-responses-output.patch │ │ ├── nginx-1.19.3_03-stream_proxy_ssl_disable.patch │ │ ├── nginx-1.19.3_04-grpc_authority_override.patch │ │ ├── ngx_lua-0.10.19_01-cosocket-mtls.patch │ │ ├── ngx_lua-0.10.19_02-dyn_upstream_keepalive.patch │ │ ├── ngx_lua-0.10.19_03-closed_listener_fd.patch │ │ └── ngx_stream_lua-0.0.9_01-expose_request_struct.patch │ ├── 1.19.3.2 │ │ ├── lua-resty-core-0.1.21_01-cosocket-mtls.patch │ │ ├── lua-resty-core-0.1.21_02-dyn_upstream_keepalive.patch │ │ ├── lua-resty-websocket-0.08_01-client-mtls.patch │ │ ├── nginx-1.19.3_01-upstream_client_certificate_and_ssl_verify.patch │ │ ├── nginx-1.19.3_02-remove-server-tokens-from-special-responses-output.patch │ │ ├── nginx-1.19.3_03-stream_proxy_ssl_disable.patch │ │ ├── nginx-1.19.3_04-grpc_authority_override.patch │ │ ├── nginx-1.19.3_05-remove-server-headers-from-ngx-header-filter-module.patch │ │ ├── ngx_lua-0.10.19_01-cosocket-mtls.patch │ │ ├── ngx_lua-0.10.19_02-dyn_upstream_keepalive.patch │ │ ├── ngx_lua-0.10.19_03-closed_listener_fd.patch │ │ └── ngx_stream_lua-0.0.9_01-expose_request_struct.patch │ ├── 1.19.9.1 │ │ ├── LuaJIT-2.1-20210510_01-ffi-arm64-macos-fix-vararg-call-handling.patch │ │ ├── LuaJIT-2.1-20210510_02-arm64-fix-pcall-error-case.patch │ │ ├── LuaJIT-2.1-20210510_03_patch_macro_luajit_version.patch │ │ ├── lua-cjson-2.1.0.8_01-empty_array.patch │ │ ├── lua-resty-core-0.1.22_01-cosocket-mtls.patch │ │ ├── lua-resty-core-0.1.22_02-dyn_upstream_keepalive.patch │ │ ├── lua-resty-core-0.1.22_03-make-resty.core.shdict-compatible-with-m1.patch │ │ ├── lua-resty-core-0.1.22_04-make-resty.core.response-compatible-with-m1.patch │ │ ├── lua-resty-websocket-0.08_01-client-mtls.patch │ │ ├── nginx-1.19.9_01-upstream_client_certificate_and_ssl_verify.patch │ │ ├── nginx-1.19.9_02-remove-server-tokens-from-special-responses-output.patch │ │ ├── nginx-1.19.9_03-stream_proxy_ssl_disable.patch │ │ ├── nginx-1.19.9_04-grpc_authority_override.patch │ │ ├── nginx-1.19.9_05-remove-server-headers-from-ngx-header-filter-module.patch │ │ ├── ngx_lua-0.10.20_01-cosocket-mtls.patch │ │ ├── ngx_lua-0.10.20_02-dyn_upstream_keepalive.patch │ │ └── ngx_stream_lua-0.0.10_01-expose_request_struct.patch │ └── 1.21.4.1 │ │ ├── LuaJIT-2.1-20220411_01_patch_macro_luajit_version.patch │ │ ├── LuaJIT-2.1-20220411_02.patch │ │ ├── lua-cjson-2.1.0.10_01-empty_array.patch │ │ ├── lua-resty-core-0.1.23_01-cosocket-mtls.patch │ │ ├── lua-resty-core-0.1.23_02-dyn_upstream_keepalive.patch │ │ ├── lua-resty-core-0.1.23_03-make-resty.core.shdict-compatible-with-m1.patch │ │ ├── lua-resty-core-0.1.23_04-make-resty.core.response-compatible-with-m1.patch │ │ ├── lua-resty-websocket-0.09_01-client-mtls.patch │ │ ├── nginx-1.21.4_01-upstream_client_certificate_and_ssl_verify.patch │ │ ├── nginx-1.21.4_02-remove-server-tokens-from-special-responses-output.patch │ │ ├── nginx-1.21.4_03-stream_upstream_client_certificate_and_ssl_verify.patch │ │ ├── nginx-1.21.4_04-grpc_authority_override.patch │ │ ├── nginx-1.21.4_05-remove-server-headers-from-ngx-header-filter-module.patch │ │ ├── ngx_lua-0.10.21_01-cosocket-mtls.patch │ │ ├── ngx_lua-0.10.21_02-dyn_upstream_keepalive.patch │ │ └── ngx_stream_lua-0.0.11_01-expose_request_struct.patch ├── t │ ├── 001-balancer-ssl-ctx.t │ ├── 002-get-ssl-ptr.t │ ├── certs │ │ ├── test.crt │ │ ├── test.key │ │ └── trusted.crt │ └── stream │ │ ├── 001-balancer-ssl-ctx.t │ │ └── 003-req-socket-starttls.t └── valgrind.suppress ├── output └── .gitignore ├── release-kong.sh ├── sign-rpm.exp └── test ├── Dockerfile.test ├── build_container.sh ├── docker-entrypoint.sh ├── kong-tests-compose.yaml ├── kong_license.json ├── nginx.conf ├── run_tests.sh ├── tests ├── 01-package │ └── run.sh ├── 02-api │ ├── down.sh │ ├── run.sh │ └── up.sh └── 03-enterprise-licensing-tests │ ├── down.sh │ ├── run.sh │ └── up.sh └── util.sh /.ci/setup_ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/.ci/setup_ci.sh -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | kong/servroot* 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/.gitmodules -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/.releaserc -------------------------------------------------------------------------------- /.rpmmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/.rpmmacros -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/README.md -------------------------------------------------------------------------------- /after-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/after-install.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.kong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/dockerfiles/Dockerfile.kong -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.openresty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/dockerfiles/Dockerfile.openresty -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/dockerfiles/Dockerfile.package -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.scratch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/dockerfiles/Dockerfile.scratch -------------------------------------------------------------------------------- /docs/Package Kong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/docs/Package Kong.png -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Release Kong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/docs/Release Kong.png -------------------------------------------------------------------------------- /docs/Test Kong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/docs/Test Kong.png -------------------------------------------------------------------------------- /fpm-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/fpm-entrypoint.sh -------------------------------------------------------------------------------- /grep-kong-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/grep-kong-version.sh -------------------------------------------------------------------------------- /id_rsa: -------------------------------------------------------------------------------- 1 | id_rsa.private -------------------------------------------------------------------------------- /kong.logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/kong.logrotate -------------------------------------------------------------------------------- /kong.private.gpg-key.asc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kong.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/kong.service -------------------------------------------------------------------------------- /nginx.vh.default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/nginx.vh.default.conf -------------------------------------------------------------------------------- /openresty-build-tools/.gitignore: -------------------------------------------------------------------------------- 1 | work 2 | buildroot 3 | *.log 4 | -------------------------------------------------------------------------------- /openresty-build-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-build-tools/README.md -------------------------------------------------------------------------------- /openresty-build-tools/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-build-tools/common.sh -------------------------------------------------------------------------------- /openresty-build-tools/kong-ngx-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-build-tools/kong-ngx-build -------------------------------------------------------------------------------- /openresty-build-tools/patches/nginx-1.11.2-cve_2018_16843_cve_2018_16844.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-build-tools/patches/nginx-1.11.2-cve_2018_16843_cve_2018_16844.patch -------------------------------------------------------------------------------- /openresty-build-tools/patches/nginx-1.11.2-cve_2019_9511_cve_2019_9513_cve_2019_9516.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-build-tools/patches/nginx-1.11.2-cve_2019_9511_cve_2019_9513_cve_2019_9516.patch -------------------------------------------------------------------------------- /openresty-build-tools/patches/nginx-1.11.2-rm_glibc_crypt_r_workaround.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-build-tools/patches/nginx-1.11.2-rm_glibc_crypt_r_workaround.patch -------------------------------------------------------------------------------- /openresty-build-tools/patches/nginx-1.13.6-cve_2018_16843_cve_2018_16844.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-build-tools/patches/nginx-1.13.6-cve_2018_16843_cve_2018_16844.patch -------------------------------------------------------------------------------- /openresty-build-tools/patches/nginx-1.13.6-cve_2019_9511_cve_2019_9513_cve_2019_9516.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-build-tools/patches/nginx-1.13.6-cve_2019_9511_cve_2019_9513_cve_2019_9516.patch -------------------------------------------------------------------------------- /openresty-build-tools/patches/nginx-1.13.6-rm_glibc_crypt_r_workaround.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-build-tools/patches/nginx-1.13.6-rm_glibc_crypt_r_workaround.patch -------------------------------------------------------------------------------- /openresty-build-tools/patches/nginx-1.15.8-cve_2019_9511_cve_2019_9513_cve_2019_9516.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-build-tools/patches/nginx-1.15.8-cve_2019_9511_cve_2019_9513_cve_2019_9516.patch -------------------------------------------------------------------------------- /openresty-build-tools/patches/nginx-patch.2018.mp4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-build-tools/patches/nginx-patch.2018.mp4.txt -------------------------------------------------------------------------------- /openresty-build-tools/patches/openresty-1.15.8.x-fix_static_libpcre_linking.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-build-tools/patches/openresty-1.15.8.x-fix_static_libpcre_linking.patch -------------------------------------------------------------------------------- /openresty-build-tools/t/001_test_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-build-tools/t/001_test_version.sh -------------------------------------------------------------------------------- /openresty-build-tools/t/002_parse_nginx_core_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-build-tools/t/002_parse_nginx_core_version.sh -------------------------------------------------------------------------------- /openresty-patches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/README.md -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.1/lua-resty-core-0.1.13_01-ssl-ctx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.1/lua-resty-core-0.1.13_01-ssl-ctx.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.1/nginx-1.13.6_01-upstream_client_certificate.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.1/nginx-1.13.6_01-upstream_client_certificate.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.1/ngx_lua-0.10.11_01-ssl-ctx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.1/ngx_lua-0.10.11_01-ssl-ctx.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.1/ngx_lua-0.10.11_02-ssl-pointer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.1/ngx_lua-0.10.11_02-ssl-pointer.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/LuaJIT-2.1-20180420_01-fix-tab-rechaining.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/LuaJIT-2.1-20180420_01-fix-tab-rechaining.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/lua-resty-core-0.1.15_01-semaphore.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/lua-resty-core-0.1.15_01-semaphore.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/lua-resty-core-0.1.15_02-ssl-ctx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/lua-resty-core-0.1.15_02-ssl-ctx.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/lua-resty-core-0.1.15_03-ssl-cert.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/lua-resty-core-0.1.15_03-ssl-cert.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/lua-resty-core-0.1.15_04-ssl-pointer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/lua-resty-core-0.1.15_04-ssl-pointer.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/lua-resty-core-0.1.15_05-fix-global-misuses.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/lua-resty-core-0.1.15_05-fix-global-misuses.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/lua-resty-core-0.1.15_06-errlog.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/lua-resty-core-0.1.15_06-errlog.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/lua-resty-core-0.1.15_07-stream-re.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/lua-resty-core-0.1.15_07-stream-re.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/lua-resty-core-0.1.15_08-pcre-map-jit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/lua-resty-core-0.1.15_08-pcre-map-jit.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/nginx-1.13.6_01-stream-tls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/nginx-1.13.6_01-stream-tls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/nginx-1.13.6_02-listen-transparent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/nginx-1.13.6_02-listen-transparent.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/nginx-1.13.6_03-log-tls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/nginx-1.13.6_03-log-tls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/nginx-1.13.6_04-chained-bio.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/nginx-1.13.6_04-chained-bio.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/nginx-1.13.6_05-ssl-preread.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/nginx-1.13.6_05-ssl-preread.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/nginx-1.13.6_06-remove-glibc-crypt_r-bug-workaround.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/nginx-1.13.6_06-remove-glibc-crypt_r-bug-workaround.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/nginx-1.13.6_07-upstream_client_certificate.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/nginx-1.13.6_07-upstream_client_certificate.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/ngx_lua-0.10.13_01-ssl-ctx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/ngx_lua-0.10.13_01-ssl-ctx.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/ngx_lua-0.10.13_02-ssl-pointer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/ngx_lua-0.10.13_02-ssl-pointer.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/ngx_lua-0.10.13_03-server_conf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/ngx_lua-0.10.13_03-server_conf.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/ngx_stream_lua-0.0.5_01-ssl-ctx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/ngx_stream_lua-0.0.5_01-ssl-ctx.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/ngx_stream_lua-0.0.5_02-enable-ffi-api.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/ngx_stream_lua-0.0.5_02-enable-ffi-api.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/ngx_stream_lua-0.0.5_03-inject-req-time-api.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/ngx_stream_lua-0.0.5_03-inject-req-time-api.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/ngx_stream_lua-0.0.5_04-semaphore.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/ngx_stream_lua-0.0.5_04-semaphore.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/ngx_stream_lua-0.0.5_05-shdict.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/ngx_stream_lua-0.0.5_05-shdict.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/ngx_stream_lua-0.0.5_06-ssl-cert.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/ngx_stream_lua-0.0.5_06-ssl-cert.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/ngx_stream_lua-0.0.5_07-errlog.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/ngx_stream_lua-0.0.5_07-errlog.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.13.6.2/ngx_stream_lua-0.0.5_08-starttls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.13.6.2/ngx_stream_lua-0.0.5_08-starttls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.1/LuaJIT-2.1-20190507_01-fix-tab-rechaining.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.1/LuaJIT-2.1-20190507_01-fix-tab-rechaining.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.1/LuaJIT-2.1-20190507_02-fix-arm-arithmetic-condition-codes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.1/LuaJIT-2.1-20190507_02-fix-arm-arithmetic-condition-codes.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.1/LuaJIT-2.1-20190507_03-dyn-lightuserdata-map.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.1/LuaJIT-2.1-20190507_03-dyn-lightuserdata-map.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.1/lua-resty-core-0.1.17_01-ssl-ctx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.1/lua-resty-core-0.1.17_01-ssl-ctx.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.1/lua-resty-core-0.1.17_02-ssl-pointer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.1/lua-resty-core-0.1.17_02-ssl-pointer.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.1/nginx-1.15.8_01-stream-tls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.1/nginx-1.15.8_01-stream-tls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.1/nginx-1.15.8_02-listen-transparent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.1/nginx-1.15.8_02-listen-transparent.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.1/nginx-1.15.8_03-log-tls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.1/nginx-1.15.8_03-log-tls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.1/nginx-1.15.8_04-chained-bio.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.1/nginx-1.15.8_04-chained-bio.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.1/nginx-1.15.8_05-remove-server-tokens-from-special-responses-output.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.1/nginx-1.15.8_05-remove-server-tokens-from-special-responses-output.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.1/nginx-1.15.8_06-upstream_client_certificate.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.1/nginx-1.15.8_06-upstream_client_certificate.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.1/ngx_lua-0.10.15_01-ssl-ctx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.1/ngx_lua-0.10.15_01-ssl-ctx.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.1/ngx_lua-0.10.15_02-ssl-pointer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.1/ngx_lua-0.10.15_02-ssl-pointer.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.1/ngx_lua-0.10.15_03-server_conf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.1/ngx_lua-0.10.15_03-server_conf.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.1/ngx_stream_lua-0.0.7_01-ssl-ctx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.1/ngx_stream_lua-0.0.7_01-ssl-ctx.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.1/ngx_stream_lua-0.0.7_02-enable-ffi-api.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.1/ngx_stream_lua-0.0.7_02-enable-ffi-api.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.1/ngx_stream_lua-0.0.7_03-inject-req-time-api.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.1/ngx_stream_lua-0.0.7_03-inject-req-time-api.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.1/ngx_stream_lua-0.0.7_04-starttls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.1/ngx_stream_lua-0.0.7_04-starttls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.2/LuaJIT-2.1-20190507_01-fix-tab-rechaining.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.2/LuaJIT-2.1-20190507_01-fix-tab-rechaining.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.2/LuaJIT-2.1-20190507_02-fix-arm-arithmetic-condition-codes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.2/LuaJIT-2.1-20190507_02-fix-arm-arithmetic-condition-codes.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.2/LuaJIT-2.1-20190507_03-dyn-lightuserdata-map.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.2/LuaJIT-2.1-20190507_03-dyn-lightuserdata-map.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.2/lua-resty-core-0.1.17_01-cosocket-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.2/lua-resty-core-0.1.17_01-cosocket-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.2/lua-resty-websocket-0.07_01-client-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.2/lua-resty-websocket-0.07_01-client-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.2/nginx-1.15.8_01-upstream_client_certificate_and_ssl_verify.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.2/nginx-1.15.8_01-upstream_client_certificate_and_ssl_verify.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.2/nginx-1.15.8_02-remove-server-tokens-from-special-responses-output.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.2/nginx-1.15.8_02-remove-server-tokens-from-special-responses-output.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.2/nginx-1.15.8_03-stream_proxy_ssl_disable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.2/nginx-1.15.8_03-stream_proxy_ssl_disable.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.2/ngx_lua-0.10.15_01-cosocket-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.2/ngx_lua-0.10.15_01-cosocket-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.2/ngx_stream_lua-0.0.7_01-enable-ffi-api.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.2/ngx_stream_lua-0.0.7_01-enable-ffi-api.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.2/ngx_stream_lua-0.0.7_02-inject-req-time-api.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.2/ngx_stream_lua-0.0.7_02-inject-req-time-api.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.2/ngx_stream_lua-0.0.7_03-expose_request_struct.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.2/ngx_stream_lua-0.0.7_03-expose_request_struct.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.3/LuaJIT-2.1-20190507_01-fix-tab-rechaining.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.3/LuaJIT-2.1-20190507_01-fix-tab-rechaining.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.3/LuaJIT-2.1-20190507_02-fix-arm-arithmetic-condition-codes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.3/LuaJIT-2.1-20190507_02-fix-arm-arithmetic-condition-codes.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.3/LuaJIT-2.1-20190507_03-dyn-lightuserdata-map.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.3/LuaJIT-2.1-20190507_03-dyn-lightuserdata-map.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.3/lua-resty-core-0.1.17_01-cosocket-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.3/lua-resty-core-0.1.17_01-cosocket-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.3/lua-resty-core-0.1.17_02-dyn_upstream_keepalive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.3/lua-resty-core-0.1.17_02-dyn_upstream_keepalive.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.3/lua-resty-core-0.1.17_03-upstream_recreate_request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.3/lua-resty-core-0.1.17_03-upstream_recreate_request.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.3/lua-resty-core-0.1.17_04-hash_stream_subsystem.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.3/lua-resty-core-0.1.17_04-hash_stream_subsystem.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.3/lua-resty-core-0.1.17_05-ffi_crc32_api.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.3/lua-resty-core-0.1.17_05-ffi_crc32_api.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.3/lua-resty-websocket-0.07_01-client-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.3/lua-resty-websocket-0.07_01-client-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.3/nginx-1.15.8_01-upstream_client_certificate_and_ssl_verify.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.3/nginx-1.15.8_01-upstream_client_certificate_and_ssl_verify.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.3/nginx-1.15.8_02-remove-server-tokens-from-special-responses-output.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.3/nginx-1.15.8_02-remove-server-tokens-from-special-responses-output.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.3/nginx-1.15.8_03-stream_proxy_ssl_disable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.3/nginx-1.15.8_03-stream_proxy_ssl_disable.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.3/ngx_lua-0.10.15_01-cosocket-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.3/ngx_lua-0.10.15_01-cosocket-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.3/ngx_lua-0.10.15_02-dyn_upstream_keepalive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.3/ngx_lua-0.10.15_02-dyn_upstream_keepalive.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.3/ngx_lua-0.10.15_03-ffi_crc32_api.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.3/ngx_lua-0.10.15_03-ffi_crc32_api.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.3/ngx_lua-0.10.15_04-upstream_recreate_request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.3/ngx_lua-0.10.15_04-upstream_recreate_request.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.3/ngx_stream_lua-0.0.7_01-enable-ffi-api.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.3/ngx_stream_lua-0.0.7_01-enable-ffi-api.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.3/ngx_stream_lua-0.0.7_02-inject-req-time-api.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.3/ngx_stream_lua-0.0.7_02-inject-req-time-api.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.3/ngx_stream_lua-0.0.7_03-expose_request_struct.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.3/ngx_stream_lua-0.0.7_03-expose_request_struct.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.15.8.3/ngx_stream_lua-0.0.7_04-ffi_crc32_api.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.15.8.3/ngx_stream_lua-0.0.7_04-ffi_crc32_api.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.1/LuaJIT-2.1-20200102_01-dyn-lightuserdata-map.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.1/LuaJIT-2.1-20200102_01-dyn-lightuserdata-map.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.1/lua-resty-core-0.1.19_01-cosocket-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.1/lua-resty-core-0.1.19_01-cosocket-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.1/lua-resty-core-0.1.19_02-dyn_upstream_keepalive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.1/lua-resty-core-0.1.19_02-dyn_upstream_keepalive.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.1/lua-resty-core-0.1.19_03-upstream_recreate_request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.1/lua-resty-core-0.1.19_03-upstream_recreate_request.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.1/lua-resty-core-0.1.19_04-stream_req_start_time.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.1/lua-resty-core-0.1.19_04-stream_req_start_time.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.1/lua-resty-websocket-0.07_01-client-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.1/lua-resty-websocket-0.07_01-client-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.1/nginx-1.17.8_01-upstream_client_certificate_and_ssl_verify.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.1/nginx-1.17.8_01-upstream_client_certificate_and_ssl_verify.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.1/nginx-1.17.8_02-remove-server-tokens-from-special-responses-output.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.1/nginx-1.17.8_02-remove-server-tokens-from-special-responses-output.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.1/nginx-1.17.8_03-stream_proxy_ssl_disable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.1/nginx-1.17.8_03-stream_proxy_ssl_disable.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.1/ngx_lua-0.10.17_01-cosocket-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.1/ngx_lua-0.10.17_01-cosocket-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.1/ngx_lua-0.10.17_02-dyn_upstream_keepalive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.1/ngx_lua-0.10.17_02-dyn_upstream_keepalive.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.1/ngx_lua-0.10.17_03-upstream_recreate_request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.1/ngx_lua-0.10.17_03-upstream_recreate_request.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.1/ngx_stream_lua-0.0.8_02-expose_request_struct.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.1/ngx_stream_lua-0.0.8_02-expose_request_struct.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.1/resty-cli-0.25-fix_tmp_directory_deletion.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.1/resty-cli-0.25-fix_tmp_directory_deletion.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.2/LuaJIT-2.1-20200102_01-dyn-lightuserdata-map.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.2/LuaJIT-2.1-20200102_01-dyn-lightuserdata-map.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.2/lua-resty-core-0.1.19_01-cosocket-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.2/lua-resty-core-0.1.19_01-cosocket-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.2/lua-resty-core-0.1.19_02-dyn_upstream_keepalive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.2/lua-resty-core-0.1.19_02-dyn_upstream_keepalive.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.2/lua-resty-core-0.1.19_03-upstream_recreate_request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.2/lua-resty-core-0.1.19_03-upstream_recreate_request.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.2/lua-resty-core-0.1.19_04-stream_req_start_time.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.2/lua-resty-core-0.1.19_04-stream_req_start_time.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.2/lua-resty-websocket-0.07_01-client-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.2/lua-resty-websocket-0.07_01-client-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.2/nginx-1.17.8_01-upstream_client_certificate_and_ssl_verify.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.2/nginx-1.17.8_01-upstream_client_certificate_and_ssl_verify.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.2/nginx-1.17.8_02-remove-server-tokens-from-special-responses-output.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.2/nginx-1.17.8_02-remove-server-tokens-from-special-responses-output.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.2/nginx-1.17.8_03-stream_proxy_ssl_disable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.2/nginx-1.17.8_03-stream_proxy_ssl_disable.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.2/nginx-1.17.8_04-grpc_authority_override.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.2/nginx-1.17.8_04-grpc_authority_override.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.2/ngx_lua-0.10.17_01-cosocket-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.2/ngx_lua-0.10.17_01-cosocket-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.2/ngx_lua-0.10.17_02-dyn_upstream_keepalive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.2/ngx_lua-0.10.17_02-dyn_upstream_keepalive.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.2/ngx_lua-0.10.17_03-upstream_recreate_request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.2/ngx_lua-0.10.17_03-upstream_recreate_request.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.2/ngx_lua-0.10.17_04-balancer_buffer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.2/ngx_lua-0.10.17_04-balancer_buffer.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.2/ngx_stream_lua-0.0.8_02-expose_request_struct.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.2/ngx_stream_lua-0.0.8_02-expose_request_struct.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.17.8.2/resty-cli-0.25-fix_tmp_directory_deletion.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.17.8.2/resty-cli-0.25-fix_tmp_directory_deletion.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.1/lua-resty-core-0.1.21_01-cosocket-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.1/lua-resty-core-0.1.21_01-cosocket-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.1/lua-resty-core-0.1.21_02-dyn_upstream_keepalive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.1/lua-resty-core-0.1.21_02-dyn_upstream_keepalive.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.1/lua-resty-websocket-0.08_01-client-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.1/lua-resty-websocket-0.08_01-client-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.1/nginx-1.19.3_01-upstream_client_certificate_and_ssl_verify.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.1/nginx-1.19.3_01-upstream_client_certificate_and_ssl_verify.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.1/nginx-1.19.3_02-remove-server-tokens-from-special-responses-output.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.1/nginx-1.19.3_02-remove-server-tokens-from-special-responses-output.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.1/nginx-1.19.3_03-stream_proxy_ssl_disable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.1/nginx-1.19.3_03-stream_proxy_ssl_disable.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.1/nginx-1.19.3_04-grpc_authority_override.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.1/nginx-1.19.3_04-grpc_authority_override.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.1/ngx_lua-0.10.19_01-cosocket-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.1/ngx_lua-0.10.19_01-cosocket-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.1/ngx_lua-0.10.19_02-dyn_upstream_keepalive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.1/ngx_lua-0.10.19_02-dyn_upstream_keepalive.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.1/ngx_lua-0.10.19_03-closed_listener_fd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.1/ngx_lua-0.10.19_03-closed_listener_fd.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.1/ngx_stream_lua-0.0.9_01-expose_request_struct.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.1/ngx_stream_lua-0.0.9_01-expose_request_struct.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.2/lua-resty-core-0.1.21_01-cosocket-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.2/lua-resty-core-0.1.21_01-cosocket-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.2/lua-resty-core-0.1.21_02-dyn_upstream_keepalive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.2/lua-resty-core-0.1.21_02-dyn_upstream_keepalive.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.2/lua-resty-websocket-0.08_01-client-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.2/lua-resty-websocket-0.08_01-client-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.2/nginx-1.19.3_01-upstream_client_certificate_and_ssl_verify.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.2/nginx-1.19.3_01-upstream_client_certificate_and_ssl_verify.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.2/nginx-1.19.3_02-remove-server-tokens-from-special-responses-output.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.2/nginx-1.19.3_02-remove-server-tokens-from-special-responses-output.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.2/nginx-1.19.3_03-stream_proxy_ssl_disable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.2/nginx-1.19.3_03-stream_proxy_ssl_disable.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.2/nginx-1.19.3_04-grpc_authority_override.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.2/nginx-1.19.3_04-grpc_authority_override.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.2/nginx-1.19.3_05-remove-server-headers-from-ngx-header-filter-module.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.2/nginx-1.19.3_05-remove-server-headers-from-ngx-header-filter-module.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.2/ngx_lua-0.10.19_01-cosocket-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.2/ngx_lua-0.10.19_01-cosocket-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.2/ngx_lua-0.10.19_02-dyn_upstream_keepalive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.2/ngx_lua-0.10.19_02-dyn_upstream_keepalive.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.2/ngx_lua-0.10.19_03-closed_listener_fd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.2/ngx_lua-0.10.19_03-closed_listener_fd.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.3.2/ngx_stream_lua-0.0.9_01-expose_request_struct.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.3.2/ngx_stream_lua-0.0.9_01-expose_request_struct.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.9.1/LuaJIT-2.1-20210510_01-ffi-arm64-macos-fix-vararg-call-handling.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.9.1/LuaJIT-2.1-20210510_01-ffi-arm64-macos-fix-vararg-call-handling.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.9.1/LuaJIT-2.1-20210510_02-arm64-fix-pcall-error-case.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.9.1/LuaJIT-2.1-20210510_02-arm64-fix-pcall-error-case.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.9.1/LuaJIT-2.1-20210510_03_patch_macro_luajit_version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.9.1/LuaJIT-2.1-20210510_03_patch_macro_luajit_version.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.9.1/lua-cjson-2.1.0.8_01-empty_array.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.9.1/lua-cjson-2.1.0.8_01-empty_array.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.9.1/lua-resty-core-0.1.22_01-cosocket-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.9.1/lua-resty-core-0.1.22_01-cosocket-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.9.1/lua-resty-core-0.1.22_02-dyn_upstream_keepalive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.9.1/lua-resty-core-0.1.22_02-dyn_upstream_keepalive.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.9.1/lua-resty-core-0.1.22_03-make-resty.core.shdict-compatible-with-m1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.9.1/lua-resty-core-0.1.22_03-make-resty.core.shdict-compatible-with-m1.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.9.1/lua-resty-core-0.1.22_04-make-resty.core.response-compatible-with-m1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.9.1/lua-resty-core-0.1.22_04-make-resty.core.response-compatible-with-m1.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.9.1/lua-resty-websocket-0.08_01-client-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.9.1/lua-resty-websocket-0.08_01-client-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.9.1/nginx-1.19.9_01-upstream_client_certificate_and_ssl_verify.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.9.1/nginx-1.19.9_01-upstream_client_certificate_and_ssl_verify.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.9.1/nginx-1.19.9_02-remove-server-tokens-from-special-responses-output.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.9.1/nginx-1.19.9_02-remove-server-tokens-from-special-responses-output.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.9.1/nginx-1.19.9_03-stream_proxy_ssl_disable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.9.1/nginx-1.19.9_03-stream_proxy_ssl_disable.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.9.1/nginx-1.19.9_04-grpc_authority_override.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.9.1/nginx-1.19.9_04-grpc_authority_override.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.9.1/nginx-1.19.9_05-remove-server-headers-from-ngx-header-filter-module.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.9.1/nginx-1.19.9_05-remove-server-headers-from-ngx-header-filter-module.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.9.1/ngx_lua-0.10.20_01-cosocket-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.9.1/ngx_lua-0.10.20_01-cosocket-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.9.1/ngx_lua-0.10.20_02-dyn_upstream_keepalive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.9.1/ngx_lua-0.10.20_02-dyn_upstream_keepalive.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.19.9.1/ngx_stream_lua-0.0.10_01-expose_request_struct.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.19.9.1/ngx_stream_lua-0.0.10_01-expose_request_struct.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.21.4.1/LuaJIT-2.1-20220411_01_patch_macro_luajit_version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.21.4.1/LuaJIT-2.1-20220411_01_patch_macro_luajit_version.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.21.4.1/LuaJIT-2.1-20220411_02.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.21.4.1/LuaJIT-2.1-20220411_02.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.21.4.1/lua-cjson-2.1.0.10_01-empty_array.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.21.4.1/lua-cjson-2.1.0.10_01-empty_array.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.21.4.1/lua-resty-core-0.1.23_01-cosocket-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.21.4.1/lua-resty-core-0.1.23_01-cosocket-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.21.4.1/lua-resty-core-0.1.23_02-dyn_upstream_keepalive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.21.4.1/lua-resty-core-0.1.23_02-dyn_upstream_keepalive.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.21.4.1/lua-resty-core-0.1.23_03-make-resty.core.shdict-compatible-with-m1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.21.4.1/lua-resty-core-0.1.23_03-make-resty.core.shdict-compatible-with-m1.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.21.4.1/lua-resty-core-0.1.23_04-make-resty.core.response-compatible-with-m1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.21.4.1/lua-resty-core-0.1.23_04-make-resty.core.response-compatible-with-m1.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.21.4.1/lua-resty-websocket-0.09_01-client-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.21.4.1/lua-resty-websocket-0.09_01-client-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.21.4.1/nginx-1.21.4_01-upstream_client_certificate_and_ssl_verify.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.21.4.1/nginx-1.21.4_01-upstream_client_certificate_and_ssl_verify.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.21.4.1/nginx-1.21.4_02-remove-server-tokens-from-special-responses-output.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.21.4.1/nginx-1.21.4_02-remove-server-tokens-from-special-responses-output.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.21.4.1/nginx-1.21.4_03-stream_upstream_client_certificate_and_ssl_verify.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.21.4.1/nginx-1.21.4_03-stream_upstream_client_certificate_and_ssl_verify.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.21.4.1/nginx-1.21.4_04-grpc_authority_override.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.21.4.1/nginx-1.21.4_04-grpc_authority_override.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.21.4.1/nginx-1.21.4_05-remove-server-headers-from-ngx-header-filter-module.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.21.4.1/nginx-1.21.4_05-remove-server-headers-from-ngx-header-filter-module.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.21.4.1/ngx_lua-0.10.21_01-cosocket-mtls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.21.4.1/ngx_lua-0.10.21_01-cosocket-mtls.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.21.4.1/ngx_lua-0.10.21_02-dyn_upstream_keepalive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.21.4.1/ngx_lua-0.10.21_02-dyn_upstream_keepalive.patch -------------------------------------------------------------------------------- /openresty-patches/patches/1.21.4.1/ngx_stream_lua-0.0.11_01-expose_request_struct.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/patches/1.21.4.1/ngx_stream_lua-0.0.11_01-expose_request_struct.patch -------------------------------------------------------------------------------- /openresty-patches/t/001-balancer-ssl-ctx.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/t/001-balancer-ssl-ctx.t -------------------------------------------------------------------------------- /openresty-patches/t/002-get-ssl-ptr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/t/002-get-ssl-ptr.t -------------------------------------------------------------------------------- /openresty-patches/t/certs/test.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/t/certs/test.crt -------------------------------------------------------------------------------- /openresty-patches/t/certs/test.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/t/certs/test.key -------------------------------------------------------------------------------- /openresty-patches/t/certs/trusted.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/t/certs/trusted.crt -------------------------------------------------------------------------------- /openresty-patches/t/stream/001-balancer-ssl-ctx.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/t/stream/001-balancer-ssl-ctx.t -------------------------------------------------------------------------------- /openresty-patches/t/stream/003-req-socket-starttls.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/t/stream/003-req-socket-starttls.t -------------------------------------------------------------------------------- /openresty-patches/valgrind.suppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/openresty-patches/valgrind.suppress -------------------------------------------------------------------------------- /output/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/output/.gitignore -------------------------------------------------------------------------------- /release-kong.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/release-kong.sh -------------------------------------------------------------------------------- /sign-rpm.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/sign-rpm.exp -------------------------------------------------------------------------------- /test/Dockerfile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/test/Dockerfile.test -------------------------------------------------------------------------------- /test/build_container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/test/build_container.sh -------------------------------------------------------------------------------- /test/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/test/docker-entrypoint.sh -------------------------------------------------------------------------------- /test/kong-tests-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/test/kong-tests-compose.yaml -------------------------------------------------------------------------------- /test/kong_license.json: -------------------------------------------------------------------------------- 1 | kong_license.private -------------------------------------------------------------------------------- /test/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/test/nginx.conf -------------------------------------------------------------------------------- /test/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/test/run_tests.sh -------------------------------------------------------------------------------- /test/tests/01-package/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/test/tests/01-package/run.sh -------------------------------------------------------------------------------- /test/tests/02-api/down.sh: -------------------------------------------------------------------------------- 1 | 2 | stop_kong 3 | 4 | -------------------------------------------------------------------------------- /test/tests/02-api/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/test/tests/02-api/run.sh -------------------------------------------------------------------------------- /test/tests/02-api/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/test/tests/02-api/up.sh -------------------------------------------------------------------------------- /test/tests/03-enterprise-licensing-tests/down.sh: -------------------------------------------------------------------------------- 1 | 2 | if [[ "$EDITION" != "enterprise" ]]; then 3 | exit 0 4 | fi 5 | 6 | stop_kong 7 | 8 | -------------------------------------------------------------------------------- /test/tests/03-enterprise-licensing-tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/test/tests/03-enterprise-licensing-tests/run.sh -------------------------------------------------------------------------------- /test/tests/03-enterprise-licensing-tests/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/test/tests/03-enterprise-licensing-tests/up.sh -------------------------------------------------------------------------------- /test/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-build-tools/HEAD/test/util.sh --------------------------------------------------------------------------------