Ensure nginx installation will not overwrite our conf files

This commit is contained in:
Johannes Zellner
2020-04-02 16:57:55 +02:00
parent 91dde5147a
commit 57afb46cbd
+2 -1
View File
@@ -28,7 +28,8 @@ echo "==> installer: updating nginx"
# https://launchpad.net/~nginx
add-apt-repository ppa:nginx/stable --yes
apt-get update
apt-get install nginx-full -y
# We need to tell dpkg to use our modified config file always
apt-get install nginx-full -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --force-yes
echo "==> installer: updating docker"