From 4f2500d7127a0be28debcabcffaf55e576203b6b Mon Sep 17 00:00:00 2001 From: Dominik Hebeler <dominik@suma-ev.de> Date: Thu, 20 Feb 2020 13:48:29 +0100 Subject: [PATCH] in our cluster php-fpm is available under localhost --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index ff6fefbec..09d993697 100644 --- a/Dockerfile +++ b/Dockerfile @@ -60,6 +60,7 @@ RUN sed -i 's/;error_log = log\/php7\/error.log/error_log = \/dev\/stdout/g' /et COPY config/nginx.conf /etc/nginx/nginx.conf COPY config/nginx-default.conf /etc/nginx/conf.d/default.conf +RUN sed -i 's/fastcgi_pass phpfpm:9000;/fastcgi_pass localhost:9000;/g' /etc/nginx/conf.d/default.conf COPY --chown=root:nginx . /html WORKDIR /html -- GitLab