瀏覽代碼

build: revert nginx to 1.25.3 (#2396)

* Revert "build: update docs and tests with nginx 1.25.4"

This reverts commit d9b1751f9763e8d29e166f61c7c8966a52d3e129.

* Revert "build: bump nginx from 1.25.3 to 1.25.4"

This reverts commit 1aef017df2dac59659ed2fb1402e181091141959.
Nicolas Duchon 1 年之前
父節點
當前提交
e75c2dfb79
共有 4 個文件被更改,包括 4 次插入4 次删除
  1. 1 1
      Dockerfile.alpine
  2. 1 1
      Dockerfile.debian
  3. 1 1
      README.md
  4. 1 1
      test/certs/create_server_certificate.sh

+ 1 - 1
Dockerfile.alpine

@@ -3,7 +3,7 @@ FROM nginxproxy/docker-gen:0.11.2 AS docker-gen
 FROM nginxproxy/forego:0.18.1 AS forego
 
 # Build the final image
-FROM nginx:1.25.4-alpine
+FROM nginx:1.25.3-alpine
 
 ARG NGINX_PROXY_VERSION
 # Add DOCKER_GEN_VERSION environment variable because 

+ 1 - 1
Dockerfile.debian

@@ -3,7 +3,7 @@ FROM nginxproxy/docker-gen:0.11.2-debian AS docker-gen
 FROM nginxproxy/forego:0.18.1-debian AS forego
 
 # Build the final image
-FROM nginx:1.25.4
+FROM nginx:1.25.3
 
 ARG NGINX_PROXY_VERSION
 # Add DOCKER_GEN_VERSION environment variable because 

+ 1 - 1
README.md

@@ -1,6 +1,6 @@
 [![Test](https://github.com/nginx-proxy/nginx-proxy/actions/workflows/test.yml/badge.svg)](https://github.com/nginx-proxy/nginx-proxy/actions/workflows/test.yml)
 [![GitHub release](https://img.shields.io/github/v/release/nginx-proxy/nginx-proxy)](https://github.com/nginx-proxy/nginx-proxy/releases)
-![nginx 1.25.4](https://img.shields.io/badge/nginx-1.25.4-brightgreen.svg)
+![nginx 1.25.3](https://img.shields.io/badge/nginx-1.25.3-brightgreen.svg)
 [![Docker Image Size](https://img.shields.io/docker/image-size/nginxproxy/nginx-proxy?sort=semver)](https://hub.docker.com/r/nginxproxy/nginx-proxy "Click to view the image on Docker Hub")
 [![Docker stars](https://img.shields.io/docker/stars/nginxproxy/nginx-proxy.svg)](https://hub.docker.com/r/nginxproxy/nginx-proxy "DockerHub")
 [![Docker pulls](https://img.shields.io/docker/pulls/nginxproxy/nginx-proxy.svg)](https://hub.docker.com/r/nginxproxy/nginx-proxy "DockerHub")

+ 1 - 1
test/certs/create_server_certificate.sh

@@ -24,7 +24,7 @@ fi
 # Create a nginx container (which conveniently provides the `openssl` command)
 ###############################################################################
 
-CONTAINER=$(docker run -d -v $DIR:/work -w /work -e SAN="$ALTERNATE_DOMAINS" nginx:1.25.4)
+CONTAINER=$(docker run -d -v $DIR:/work -w /work -e SAN="$ALTERNATE_DOMAINS" nginx:1.25.3)
 # Configure openssl
 docker exec $CONTAINER bash -c '
 	mkdir -p /ca/{certs,crl,private,newcerts} 2>/dev/null