File tree 4 files changed +11
-5
lines changed
4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.27.4
4
+
5
+ * Update base image to ` zappi/nginx:1.27.4 ` .
6
+ * Fix pid file perimssion denied error.
7
+
3
8
## 1.27.1-2
4
9
5
10
* Upgrade ` headers-more-nginx-module ` to ` v0.38 ` .
Original file line number Diff line number Diff line change 1
- FROM zappi/nginx:1.27.1 AS builder
1
+ FROM zappi/nginx:1.27.4 AS builder
2
2
3
3
USER root
4
4
@@ -16,9 +16,9 @@ RUN apt-get update -y && \
16
16
WORKDIR /usr/src/
17
17
18
18
# Download nginx source
19
- ARG NGINX_VERSION="1.27.1 "
19
+ ARG NGINX_VERSION="1.27.4 "
20
20
ARG NGINX_PKG="nginx-${NGINX_VERSION}.tar.gz"
21
- ARG NGINX_SHA="bd7ba68a6ce1ea3768b771c7e2ab4955a59fb1b1ae8d554fedb6c2304104bdfc "
21
+ ARG NGINX_SHA="294816f879b300e621fa4edd5353dd1ec00badb056399eceb30de7db64b753b2 "
22
22
RUN wget "http://nginx.org/download/${NGINX_PKG}" && \
23
23
echo "${NGINX_SHA} *${NGINX_PKG}" | sha256sum -c - && \
24
24
tar --no-same-owner -xzf ${NGINX_PKG} --one-top-level=nginx --strip-components=1
@@ -37,7 +37,7 @@ RUN cd nginx && \
37
37
make modules
38
38
39
39
# Production container starts here
40
- FROM zappi/nginx:1.27.1
40
+ FROM zappi/nginx:1.27.4
41
41
42
42
USER root
43
43
Original file line number Diff line number Diff line change 1
1
daemon off;
2
2
3
+ pid /tmp/nginx.pid;
4
+
3
5
worker_processes auto;
4
6
worker_rlimit_nofile 8192;
5
7
worker_shutdown_timeout 240s;
Original file line number Diff line number Diff line change 1
1
---
2
- version : ' 3.7'
3
2
services :
4
3
app :
5
4
image : caddy:2.1.1-alpine
You can’t perform that action at this time.
0 commit comments