Skip to content
This repository was archived by the owner on Jan 6, 2021. It is now read-only.

Commit 884cd2b

Browse files
authored
Merge pull request #304 from linuxserver/default
remove default.conf when nginx is updated in downstream image
2 parents e734aa6 + b02dd13 commit 884cd2b

File tree

5 files changed

+8
-0
lines changed

5 files changed

+8
-0
lines changed

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@ RUN \
104104
tar xf \
105105
/tmp/proxy.tar.gz -C \
106106
/defaults/proxy-confs --strip-components=1 --exclude=linux*/.gitattributes --exclude=linux*/.github && \
107+
echo "**** configure nginx ****" && \
108+
rm -f /etc/nginx/conf.d/default.conf && \
107109
echo "**** cleanup ****" && \
108110
for cleanfiles in *.pyc *.pyo; \
109111
do \

Dockerfile.aarch64

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@ RUN \
104104
tar xf \
105105
/tmp/proxy.tar.gz -C \
106106
/defaults/proxy-confs --strip-components=1 --exclude=linux*/.gitattributes --exclude=linux*/.github && \
107+
echo "**** configure nginx ****" && \
108+
rm -f /etc/nginx/conf.d/default.conf && \
107109
echo "**** cleanup ****" && \
108110
for cleanfiles in *.pyc *.pyo; \
109111
do \

Dockerfile.armhf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@ RUN \
104104
tar xf \
105105
/tmp/proxy.tar.gz -C \
106106
/defaults/proxy-confs --strip-components=1 --exclude=linux*/.gitattributes --exclude=linux*/.github && \
107+
echo "**** configure nginx ****" && \
108+
rm -f /etc/nginx/conf.d/default.conf && \
107109
echo "**** cleanup ****" && \
108110
for cleanfiles in *.pyc *.pyo; \
109111
do \

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
254254

255255
## Versions
256256

257+
* **08.05.19:** - Remove default.conf when nginx is upgraded in downstream image.
257258
* **30.04.19:** - Add php-redis.
258259
* **12.04.19:** - Rebase aarch64 image to 3.9.
259260
* **25.03.19:** - Rebase aarch64 image back to 3.8 due to python issues (specifically with fail2ban), switch packages to python 3 on amd64 and armhf, clean up pip/python cache to shrink image size.

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ app_setup_nginx_reverse_proxy_block: ""
126126

127127
# changelog
128128
changelogs:
129+
- { date: "08.05.19:", desc: "Remove default.conf when nginx is upgraded in downstream image." }
129130
- { date: "30.04.19:", desc: "Add php-redis." }
130131
- { date: "12.04.19:", desc: "Rebase aarch64 image to 3.9." }
131132
- { date: "25.03.19:", desc: "Rebase aarch64 image back to 3.8 due to python issues (specifically with fail2ban), switch packages to python 3 on amd64 and armhf, clean up pip/python cache to shrink image size." }

0 commit comments

Comments
 (0)