Skip to content

Commit f2f4b52

Browse files
authored
Merge pull request #135 from macbre/nginx/1.25.4
nginx 1.25.4 + njs 0.8.3
2 parents ed7d4d5 + 90653f5 commit f2f4b52

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.github/workflows/dockerimage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
111111
- name: Test njs command line
112112
run: |
113-
echo "console.log('Using njs v' + njs.version)" | docker run -i --rm macbre/nginx njs -q - | grep "Using njs v0.8.1"
113+
echo "console.log('Using njs v' + njs.version)" | docker run -i --rm macbre/nginx njs -q - | grep "Using njs v0.8.3"
114114
115115
- name: Show logs
116116
if: always()

Dockerfile

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
# https://hg.nginx.org/nginx/file/tip/src/core/nginx.h
2-
ARG NGINX_VERSION=1.25.3
2+
ARG NGINX_VERSION=1.25.4
33

44
# https://hg.nginx.org/nginx
5-
ARG NGINX_COMMIT=25a2efd97a3e
5+
ARG NGINX_COMMIT=89bff782528a
66

77
# https://github.com/google/ngx_brotli
8-
ARG NGX_BROTLI_COMMIT=63ca02abdcf79c9e788d2eedcc388d2335902e52
8+
ARG NGX_BROTLI_COMMIT=a71f9312c2deb28875acc7bacfdd5695a111aa53
99

1010
# https://github.com/google/boringssl
1111
#ARG BORINGSSL_COMMIT=fae0964b3d44e94ca2a2d21f86e61dabe683d130
1212

13-
# http://hg.nginx.org/njs / v0.8.1
14-
ARG NJS_COMMIT=a387eed79b90
13+
# http://hg.nginx.org/njs / v0.8.3
14+
ARG NJS_COMMIT=3aba7ee62080
1515

1616
# https://github.com/openresty/headers-more-nginx-module#installation
1717
# we want to have https://github.com/openresty/headers-more-nginx-module/commit/e536bc595d8b490dbc9cf5999ec48fca3f488632
18-
ARG HEADERS_MORE_VERSION=0.34
18+
ARG HEADERS_MORE_VERSION=0.37
1919

2020
# https://github.com/leev/ngx_http_geoip2_module/releases
2121
ARG GEOIP2_VERSION=3.4

readme.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,20 @@ docker pull ghcr.io/macbre/nginx-http3:latest
2626

2727
```
2828
$ docker run -it macbre/nginx-http3 nginx -V
29-
nginx version: nginx/1.25.3 (quic-25a2efd97a3e)
30-
built by gcc 13.2.1 20231014 (Alpine 13.2.1_git20231014)
29+
nginx version: nginx/1.25.4 (quic-89bff782528a)
30+
built by gcc 13.2.1 20231014 (Alpine 13.2.1_git20231014)
3131
built with OpenSSL 3.1.4 24 Oct 2023
3232
TLS SNI support enabled
3333
configure arguments:
34-
--build=quic-25a2efd97a3e
34+
--build=quic-89bff782528a
3535
--prefix=/etc/nginx
3636
--sbin-path=/usr/sbin/nginx
3737
--modules-path=/usr/lib/nginx/modules
3838
--conf-path=/etc/nginx/nginx.conf
3939
--error-log-path=/var/log/nginx/error.log
4040
--http-log-path=/var/log/nginx/access.log
41-
--pid-path=/var/run/nginx.pid
42-
--lock-path=/var/run/nginx.lock
41+
--pid-path=/var/run/nginx/nginx.pid
42+
--lock-path=/var/run/nginx/nginx.lock
4343
--http-client-body-temp-path=/var/cache/nginx/client_temp
4444
--http-proxy-temp-path=/var/cache/nginx/proxy_temp
4545
--http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp
@@ -78,12 +78,12 @@ configure arguments:
7878
--with-http_v2_module
7979
--with-http_v3_module
8080
--add-module=/usr/src/ngx_brotli
81-
--add-module=/usr/src/headers-more-nginx-module-0.34
81+
--add-module=/usr/src/headers-more-nginx-module-0.37
8282
--add-module=/usr/src/njs/nginx
83-
--add-dynamic-module=/usr/src/ngx_http_geoip2_module
83+
--add-dynamic-module=/usr/src/ngx_http_geoip2_module
8484
8585
$ docker run -it macbre/nginx-http3 njs -v
86-
0.8.1
86+
0.8.3
8787
```
8888

8989
## SSL Grade A+ handling

0 commit comments

Comments
 (0)