Skip to content

Commit

Permalink
Release 6.2.19 - See CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tiredofit committed Mar 25, 2023
1 parent d605d87 commit 14846c0
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 6.2.19 2023-03-25 <dave at tiredofit dot ca>

### Added
- Add libldap to alpine Dockerfile


## 6.2.18 2023-03-23 <dave at tiredofit dot ca>

### Changed
Expand Down
10 changes: 6 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
ARG DISTRO=alpine
ARG DISTRO_VARIANT=3.17
#ARG DISTRO=alpine
#ARG DISTRO_VARIANT=3.17

FROM docker.io/tiredofit/${DISTRO}:${DISTRO_VARIANT}
#FROM docker.io/tiredofit/${DISTRO}:${DISTRO_VARIANT}
FROM tiredofit/alpine:develop
LABEL maintainer="Dave Conroy (github.com/tiredofit)"

ARG NGINX_VERSION
Expand Down Expand Up @@ -41,7 +42,7 @@ RUN case "$(cat /etc/os-release | grep VERSION_ID | cut -d = -f 2 | cut -d . -f
tar \
zlib-dev \
&& \
\
\
package install .brotli-build-deps \
autoconf \
automake \
Expand Down Expand Up @@ -141,6 +142,7 @@ RUN case "$(cat /etc/os-release | grep VERSION_ID | cut -d = -f 2 | cut -d . -f
$runDeps \
apache2-utils \
inotify-tools \
libldap \
&& \
\
mkdir -p /etc/nginx/snippets/blockbots && \
Expand Down
8 changes: 4 additions & 4 deletions install/assets/functions/10-nginx
Original file line number Diff line number Diff line change
Expand Up @@ -612,8 +612,8 @@ nginx_site_enable() {
if [ "$(ls -A /etc/nginx/sites.available/)" ]; then
shopt -s nullglob
for site in /etc/nginx/sites.available/*.conf; do
print_debug "Enabling Nginx Site '$(basename ${site})'"
ln -sf /etc/nginx/sites.available/"$(basename ${site})" /etc/nginx/sites.enabled/
print_debug "Enabling Nginx Site '$(basename "${site}")'"
ln -sf /etc/nginx/sites.available/"$(basename "${site}")" /etc/nginx/sites.enabled/
done
shopt -u nullglob
fi
Expand All @@ -636,8 +636,8 @@ nginx_site_disable() {
if [ "${1,,}" = "all" ] ; then
shopt -s nullglob
for site in /etc/nginx/sites.enabled/*.conf; do
print_debug "Disabling Nginx Site '$(basename ${site})"
rm -rf /etc/nginx/sites.enabled/"$(basename ${site})"
print_debug "Disabling Nginx Site '$(basename "${site}")"
rm -rf /etc/nginx/sites.enabled/"$(basename "${site}")"
done
shopt -u nullglob
else
Expand Down

0 comments on commit 14846c0

Please sign in to comment.