From 25e8f0c34327cf868b87a0f3dabbf299b880f3ef Mon Sep 17 00:00:00 2001 From: Aditya Alok Date: Sun, 8 May 2022 10:50:33 +0530 Subject: [PATCH] feat(nginx): enable stream and stream-ssl support - `--with-stream` enables the TCP and UDP proxy close #10541 Signed-off-by: Aditya Alok --- packages/nginx/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/nginx/build.sh b/packages/nginx/build.sh index 271829c88..5413ad51e 100644 --- a/packages/nginx/build.sh +++ b/packages/nginx/build.sh @@ -3,7 +3,7 @@ TERMUX_PKG_DESCRIPTION="Lightweight HTTP server" TERMUX_PKG_LICENSE="BSD 2-Clause" TERMUX_PKG_MAINTAINER="@termux" TERMUX_PKG_VERSION=1.21.3 -TERMUX_PKG_REVISION=4 +TERMUX_PKG_REVISION=5 TERMUX_PKG_SRCURL=http://nginx.org/download/nginx-$TERMUX_PKG_VERSION.tar.gz TERMUX_PKG_SHA256=14774aae0d151da350417efc4afda5cce5035056e71894836797e1f6e2d1175a TERMUX_PKG_DEPENDS="libandroid-glob, libcrypt, pcre, openssl, zlib" @@ -65,6 +65,8 @@ termux_step_configure() { --with-http_ssl_module \ --with-http_v2_module \ --with-http_gunzip_module \ + --with-stream \ + --with-stream_ssl_module \ $DEBUG_FLAG }