Skip to content

Commit f8c4827

Browse files
committed
sync: updated to 1.27.0
1 parent 1796a42 commit f8c4827

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ jobs:
2929
linux/amd64
3030
linux/arm64/v8
3131
cache-to: type=gha, scope=${{ env.REPOSITORY }}, mode=max
32-
outputs: type=cacheonly
32+
outputs: type=cacheonly

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ jobs:
4646
linux/arm64/v8
4747
cache-from: type=gha, scope=${{ env.REPOSITORY }}
4848
tags: ${{ steps.meta.outputs.tags }}
49-
labels: ${{ steps.meta.outputs.labels }}
49+
labels: ${{ steps.meta.outputs.labels }}

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM debian:bookworm-slim AS builder
22

3-
ARG NGINX_VERSION="1.25.4"
3+
ARG NGINX_VERSION="1.27.0"
44
ARG NGINX_GPG_KEY="D6786CE303D9A9022998DC6CC8464D549AF75C0A 13C82A63B603576156E30A4EA0EA981B66B0D967"
55
ARG NGINX_URL="https://nginx.org/download/nginx-${NGINX_VERSION}.tar.gz"
66
ARG NGINX_PGP_URL="https://nginx.org/download/nginx-${NGINX_VERSION}.tar.gz.asc"
@@ -256,4 +256,4 @@ EXPOSE 443/udp
256256

257257
STOPSIGNAL SIGQUIT
258258

259-
CMD ["nginx", "-g", "daemon off;"]
259+
CMD ["nginx", "-g", "daemon off;"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ $ docker pull ghcr.io/akafeng/nginx
3636
### Thanks
3737

3838
- [@metowolf](http://github.com/metowolf)
39-
- [@kn007](https://github.com/kn007)
39+
- [@kn007](https://github.com/kn007)

config/logrotate

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
kill -USR1 `cat /var/run/nginx.pid`
1313
fi
1414
endscript
15-
}
15+
}

config/nginx.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ http {
5858
brotli_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript image/svg+xml;
5959

6060
include /etc/nginx/conf.d/*.conf;
61-
}
61+
}

config/nginx.vhost.default.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ server {
66
index index.html index.htm;
77

88
error_page 500 502 503 504 /50x.html;
9-
}
9+
}

docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ if [ "${1#-}" != "$1" ]; then
1010
set -- nginx "$@"
1111
fi
1212

13-
exec "$@"
13+
exec "$@"

0 commit comments

Comments
 (0)