diff --git a/AUTHORS.md b/AUTHORS.md index 58823e0..3ad2f0f 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -10,3 +10,4 @@ We'd like to thank the following people for their commits: - Davide Montanari - Roy Nasser (NeoAssist) - Joseph C. Sible +- Robin Ketelbuters \ No newline at end of file diff --git a/README.md b/README.md index 59f10fc..d995043 100644 --- a/README.md +++ b/README.md @@ -239,7 +239,7 @@ docker build --build-arg RESTY_J=4 -f xenial/Dockerfile . |RESTY_OPENSSL_VERSION | 1.1.0j / 1.1.1c | The version of OpenSSL to use. | |RESTY_PCRE_VERSION | 8.42 | The version of PCRE to use. | |RESTY_J | 1 | Sets the parallelism level (-jN) for the builds. | -|RESTY_CONFIG_OPTIONS | "--with-file-aio --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_geoip_module=dynamic --with-http_gunzip_module --with-http_gzip_static_module --with-http_image_filter_module=dynamic --with-http_mp4_module --with-http_perl_module=dynamic --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-http_xslt_module=dynamic --with-ipv6 --with-mail --with-mail_ssl_module --with-md5-asm --with-pcre-jit --with-sha1-asm --with-stream --with-stream_ssl_module --with-threads" | Options to pass to OpenResty's `./configure` script. | +|RESTY_CONFIG_OPTIONS | "--with-compat --with-file-aio --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_geoip_module=dynamic --with-http_gunzip_module --with-http_gzip_static_module --with-http_image_filter_module=dynamic --with-http_mp4_module --with-http_perl_module=dynamic --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-http_xslt_module=dynamic --with-ipv6 --with-mail --with-mail_ssl_module --with-md5-asm --with-pcre-jit --with-sha1-asm --with-stream --with-stream_ssl_module --with-threads" | Options to pass to OpenResty's `./configure` script. | |RESTY_LUAJIT_OPTIONS | "--with-luajit-xcflags='-DLUAJIT_NUMMODE=2 -DLUAJIT_ENABLE_LUA52COMPAT'" | Options to tweak LuaJIT. | |RESTY_CONFIG_OPTIONS_MORE | "" | More options to pass to OpenResty's `./configure` script. | |RESTY_ADD_PACKAGE_BUILDDEPS | "" | Additional packages to install with package manager required by build only (removed after installation) | diff --git a/alpine/Dockerfile b/alpine/Dockerfile index cd3338b..a481a7a 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -16,6 +16,7 @@ ARG RESTY_OPENSSL_VERSION="1.1.1c" ARG RESTY_PCRE_VERSION="8.42" ARG RESTY_J="1" ARG RESTY_CONFIG_OPTIONS="\ + --with-compat \ --with-file-aio \ --with-http_addition_module \ --with-http_auth_request_module \ diff --git a/bionic/Dockerfile b/bionic/Dockerfile index 8302420..391486e 100644 --- a/bionic/Dockerfile +++ b/bionic/Dockerfile @@ -17,6 +17,7 @@ ARG RESTY_OPENSSL_VERSION="1.1.0j" ARG RESTY_PCRE_VERSION="8.42" ARG RESTY_J="1" ARG RESTY_CONFIG_OPTIONS="\ + --with-compat \ --with-file-aio \ --with-http_addition_module \ --with-http_auth_request_module \ diff --git a/xenial/Dockerfile b/xenial/Dockerfile index 5dfcbd7..22d30fb 100644 --- a/xenial/Dockerfile +++ b/xenial/Dockerfile @@ -17,6 +17,7 @@ ARG RESTY_OPENSSL_VERSION="1.1.0j" ARG RESTY_PCRE_VERSION="8.42" ARG RESTY_J="1" ARG RESTY_CONFIG_OPTIONS="\ + --with-compat \ --with-file-aio \ --with-http_addition_module \ --with-http_auth_request_module \