From f344d01641f011d7af4e9c995715c6063e905e7c Mon Sep 17 00:00:00 2001 From: Walter Oggioni Date: Sun, 20 Oct 2024 14:43:54 +0800 Subject: [PATCH] updated nginx to 1.27.2 --- .gitea/workflows/build-nginx.yaml | 4 ++-- nginx/Dockerfile | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build-nginx.yaml b/.gitea/workflows/build-nginx.yaml index 15f4320..55c948d 100644 --- a/.gitea/workflows/build-nginx.yaml +++ b/.gitea/workflows/build-nginx.yaml @@ -35,8 +35,8 @@ jobs: pull: true tags: | "gitea.woggioni.net/woggioni/nginx:latest" - "gitea.woggioni.net/woggioni/nginx:v1.27.1" - build-args: "VERSION=1.27.1" + "gitea.woggioni.net/woggioni/nginx:v1.27.2" + build-args: "VERSION=1.27.2" cache-from: type=registry,ref=gitea.woggioni.net/woggioni/nginx:buildx cache-to: type=registry,mode=max,compression=zstd,image-manifest=true,oci-mediatypes=true,ref=gitea.woggioni.net/woggioni/nginx:buildx diff --git a/nginx/Dockerfile b/nginx/Dockerfile index 87463ba..f783dad 100644 --- a/nginx/Dockerfile +++ b/nginx/Dockerfile @@ -116,8 +116,6 @@ RUN GPG_KEYS=D6786CE303D9A9022998DC6CC8464D549AF75C0A \ && make -C/usr/src/boringssl/build -j$(getconf _NPROCESSORS_ONLN) \ ) \ && cd /usr/src/nginx-${NGINX_VERSION} \ - && curl -fSL https://raw.githubusercontent.com/nginx-modules/ngx_http_tls_dyn_size/master/nginx__dynamic_tls_records_1.25.1%2B.patch -o dynamic_tls_records.patch \ - && patch -p1 < dynamic_tls_records.patch \ && ./configure $CONFIG --with-debug --with-cc-opt="-I/usr/src/boringssl/include" --with-ld-opt="-L/usr/src/boringssl/build/ssl -L/usr/src/boringssl/build/crypto" \ && make -j$(getconf _NPROCESSORS_ONLN) \ && mv objs/nginx objs/nginx-debug \