Skip to content

Commit

Permalink
Release 6.5.1 - See CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tiredofit committed Sep 24, 2024
1 parent 4e6e069 commit 6099774
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 6.5.1 2024-09-24 <dave at tiredofit dot ca>

### Added
- Nginx 1.27.1
- Nginx Auth LDAP pinned to 241200eac8e4acae74d353291bd27f79e5ca3dc4
- Nginx Brotly pinned to 6e975bcb015f62e1f303054897783355e2a877dc
- Nginx Cookie Flag pinned to c4ff449318474fbbb4ba5f40cb67ccd54dc595d4
- Nginx More Headers pinned to f8f80997f19a41dc4181987544b9f3570cc3d6da


## 6.5.0 2024-08-07 <terryzwt>

### Added
Expand Down
16 changes: 9 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ LABEL maintainer="Dave Conroy (github.com/tiredofit)"

ARG NGINX_VERSION

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

0 comments on commit 6099774

Please sign in to comment.