Skip to content

Commit 6099774

Browse files
committed
Release 6.5.1 - See CHANGELOG.md
1 parent 4e6e069 commit 6099774

File tree

2 files changed

+19
-7
lines changed

2 files changed

+19
-7
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 6.5.1 2024-09-24 <dave at tiredofit dot ca>
2+
3+
### Added
4+
- Nginx 1.27.1
5+
- Nginx Auth LDAP pinned to 241200eac8e4acae74d353291bd27f79e5ca3dc4
6+
- Nginx Brotly pinned to 6e975bcb015f62e1f303054897783355e2a877dc
7+
- Nginx Cookie Flag pinned to c4ff449318474fbbb4ba5f40cb67ccd54dc595d4
8+
- Nginx More Headers pinned to f8f80997f19a41dc4181987544b9f3570cc3d6da
9+
10+
111
## 6.5.0 2024-08-07 <terryzwt>
212

313
### Added

Dockerfile

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ LABEL maintainer="Dave Conroy (github.com/tiredofit)"
66

77
ARG NGINX_VERSION
88

9-
ENV NGINX_VERSION=${NGINX_VERSION:-"1.27.0"} \
10-
NGINX_AUTH_LDAP_VERSION=master \
11-
NGINX_BROTLI_VERSION=6e975bcb015f62e1f303054897783355e2a877dc \
9+
ENV NGINX_VERSION=${NGINX_VERSION:-"1.27.1"} \
10+
NGINX_MODULE_AUTH_LDAP_VERSION=241200eac8e4acae74d353291bd27f79e5ca3dc4 \
11+
NGINX_MODULE_BROTLI_VERSION=6e975bcb015f62e1f303054897783355e2a877dc \
12+
NGINX_MODULE_COOKIE_FLAG_VERSION=c4ff449318474fbbb4ba5f40cb67ccd54dc595d4 \
13+
NGINX_MODULE_MORE_HEADERS_VERSION=f8f80997f19a41dc4181987544b9f3570cc3d6da \
1214
NGINX_USER=nginx \
1315
NGINX_GROUP=www-data \
1416
NGINX_WEBROOT=/www/html \
@@ -57,10 +59,10 @@ RUN case "$(cat /etc/os-release | grep VERSION_ID | cut -d = -f 2 | cut -d . -f
5759
\
5860
mkdir -p /www /var/log/nginx && \
5961
chown -R ${NGINX_USER}:${NGINX_GROUP} /var/log/nginx && \
60-
clone_git_repo https://github.com/openresty/headers-more-nginx-module && \
61-
clone_git_repo https://github.com/kvspb/nginx-auth-ldap ${NGINX_LDAP_VERSION} && \
62-
clone_git_repo https://github.com/AirisX/nginx_cookie_flag_module && \
63-
clone_git_repo https://github.com/google/ngx_brotli ${NGINX_BROTLI_VERSION} && \
62+
clone_git_repo https://github.com/openresty/headers-more-nginx-module ${NGINX_MODULE_MORE_HEADERS_VERSION} && \
63+
clone_git_repo https://github.com/kvspb/nginx-auth-ldap ${NGINX_MODULE_AUTH_LDAP_VERSION} && \
64+
clone_git_repo https://github.com/google/ngx_brotli ${NGINX_MODULE_BROTLI_VERSION} && \
65+
clone_git_repo https://github.com/AirisX/nginx_cookie_flag_module ${NGINX_MODULE_COOKIE_FLAG_VERSION} && \
6466
mkdir -p /usr/src/nginx && \
6567
curl -sSL http://nginx.org/download/nginx-${NGINX_VERSION}.tar.gz | tar xvfz - --strip 1 -C /usr/src/nginx && \
6668
cd /usr/src/nginx && \

0 commit comments

Comments
 (0)