From 9d6c40aa5a817394f681914fa7edeef53ce83966 Mon Sep 17 00:00:00 2001 From: Tim de Pater Date: Tue, 5 Nov 2019 14:27:04 +0100 Subject: [PATCH] Remove the default server config now this folder is included from nginx.conf --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5d20bee..7079321 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,8 @@ RUN apk --no-cache add php7 php7-fpm php7-mysqli php7-json php7-openssl php7-cur # Configure nginx COPY config/nginx.conf /etc/nginx/nginx.conf +# Remove default server definition +RUN rm /etc/nginx/conf.d/default.conf # Configure PHP-FPM COPY config/fpm-pool.conf /etc/php7/php-fpm.d/www.conf