Skip to content

Commit 2b0fea1

Browse files
authored
Merge pull request #12 from Intellection/upgrade-nginx-to-1.23.3
Upgrade nginx to 1.23.3
2 parents 546d251 + b77beda commit 2b0fea1

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 1.23.3
4+
5+
* Upgrade nginx to 1.23.3.
6+
* Upgrade headers-more to 0.34.
7+
38
## 1.19.5-8
49

510
* Allow passing through `X-Forwarded-Host` header if it's set.

CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @Intellection/devops
1+
* @Intellection/sre

Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM zappi/nginx:1.19.5 as builder
1+
FROM zappi/nginx:1.23.3 as builder
22

33
USER root
44

@@ -24,18 +24,18 @@ RUN apk add --no-cache \
2424
WORKDIR /usr/src/
2525

2626
# Download nginx source
27-
ARG NGINX_VERSION="1.19.5"
27+
ARG NGINX_VERSION="1.23.3"
2828
ARG NGINX_PKG="nginx-${NGINX_VERSION}.tar.gz"
29-
ARG NGINX_SHA="5c0a46afd6c452d4443f6ec0767f4d5c3e7c499e55a60cd6542b35a61eda799c"
29+
ARG NGINX_SHA="75cb5787dbb9fae18b14810f91cc4343f64ce4c24e27302136fb52498042ba54"
3030

3131
RUN wget "http://nginx.org/download/${NGINX_PKG}" && \
3232
echo "${NGINX_SHA} *${NGINX_PKG}" | sha256sum -c - && \
3333
tar --no-same-owner -xzf ${NGINX_PKG} --one-top-level=nginx --strip-components=1
3434

3535
# Download headers-more module source
36-
ARG HEADERS_MORE_VERSION="0.33"
36+
ARG HEADERS_MORE_VERSION="0.34"
3737
ARG HEADERS_MORE_PKG="v${HEADERS_MORE_VERSION}.tar.gz"
38-
ARG HEADERS_MORE_SHA="a3dcbab117a9c103bc1ea5200fc00a7b7d2af97ff7fd525f16f8ac2632e30fbf"
38+
ARG HEADERS_MORE_SHA="0c0d2ced2ce895b3f45eb2b230cd90508ab2a773299f153de14a43e44c1209b3"
3939

4040
RUN wget "https://github.com/openresty/headers-more-nginx-module/archive/${HEADERS_MORE_PKG}" && \
4141
echo "${HEADERS_MORE_SHA} *${HEADERS_MORE_PKG}" | sha256sum -c - && \
@@ -48,7 +48,7 @@ RUN cd nginx && \
4848
make modules
4949

5050
# Production container starts here
51-
FROM zappi/nginx:1.19.5
51+
FROM zappi/nginx:1.23.3
5252

5353
# Copy compiled module
5454
COPY --from=builder /usr/src/nginx/objs/*_module.so /etc/nginx/modules/

0 commit comments

Comments
 (0)