From 7c4562cd7aa22ee6ad6ac8351e23f9b909c5d6b4 Mon Sep 17 00:00:00 2001 From: Zoey Date: Mon, 22 May 2023 22:03:08 +0200 Subject: [PATCH] quic got merged into default nginx Signed-off-by: Zoey --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c92557c..8f3b268 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ RUN git clone --recursive https://github.com/SpiderLabs/ModSecurity /src/ModSecu make -j "$(nproc)" install && \ strip -s /usr/local/modsecurity/lib/libmodsecurity.so.3 # Nginx -RUN hg clone https://hg.nginx.org/nginx-quic -r "quic" /src/nginx && \ +RUN hg clone https://hg.nginx.org/nginx -r "default" /src/nginx && \ wget https://raw.githubusercontent.com/nginx-modules/ngx_http_tls_dyn_size/master/nginx__dynamic_tls_records_1.17.7%2B.patch -O /src/nginx/1.patch && \ wget https://github.com/angristan/nginx-autoinstall/raw/master/patches/nginx_hpack_push_with_http3.patch -O /src/nginx/2.patch && \ wget https://raw.githubusercontent.com/openresty/openresty/master/patches/nginx-1.23.0-resolver_conf_parsing.patch -O /src/nginx/3.patch && \