├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── 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 /.gitignore: -------------------------------------------------------------------------------- 1 | work 2 | buildroot 3 | *.log 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/openresty-build-tools/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/openresty-build-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/openresty-build-tools/HEAD/README.md -------------------------------------------------------------------------------- /kong-ngx-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/openresty-build-tools/HEAD/kong-ngx-build -------------------------------------------------------------------------------- /patches/nginx-1.11.2-cve_2018_16843_cve_2018_16844.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/openresty-build-tools/HEAD/patches/nginx-1.11.2-cve_2018_16843_cve_2018_16844.patch -------------------------------------------------------------------------------- /patches/nginx-1.11.2-cve_2019_9511_cve_2019_9513_cve_2019_9516.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/openresty-build-tools/HEAD/patches/nginx-1.11.2-cve_2019_9511_cve_2019_9513_cve_2019_9516.patch -------------------------------------------------------------------------------- /patches/nginx-1.11.2-rm_glibc_crypt_r_workaround.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/openresty-build-tools/HEAD/patches/nginx-1.11.2-rm_glibc_crypt_r_workaround.patch -------------------------------------------------------------------------------- /patches/nginx-1.13.6-cve_2018_16843_cve_2018_16844.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/openresty-build-tools/HEAD/patches/nginx-1.13.6-cve_2018_16843_cve_2018_16844.patch -------------------------------------------------------------------------------- /patches/nginx-1.13.6-cve_2019_9511_cve_2019_9513_cve_2019_9516.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/openresty-build-tools/HEAD/patches/nginx-1.13.6-cve_2019_9511_cve_2019_9513_cve_2019_9516.patch -------------------------------------------------------------------------------- /patches/nginx-1.13.6-rm_glibc_crypt_r_workaround.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/openresty-build-tools/HEAD/patches/nginx-1.13.6-rm_glibc_crypt_r_workaround.patch -------------------------------------------------------------------------------- /patches/nginx-1.15.8-cve_2019_9511_cve_2019_9513_cve_2019_9516.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/openresty-build-tools/HEAD/patches/nginx-1.15.8-cve_2019_9511_cve_2019_9513_cve_2019_9516.patch -------------------------------------------------------------------------------- /patches/nginx-patch.2018.mp4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/openresty-build-tools/HEAD/patches/nginx-patch.2018.mp4.txt -------------------------------------------------------------------------------- /patches/openresty-1.15.8.x-fix_static_libpcre_linking.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/openresty-build-tools/HEAD/patches/openresty-1.15.8.x-fix_static_libpcre_linking.patch -------------------------------------------------------------------------------- /t/001_test_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/openresty-build-tools/HEAD/t/001_test_version.sh -------------------------------------------------------------------------------- /t/002_parse_nginx_core_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/openresty-build-tools/HEAD/t/002_parse_nginx_core_version.sh --------------------------------------------------------------------------------