diff --git a/Dockerfile b/Dockerfile index ee070b8..a5597f3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,6 +28,8 @@ RUN wget https://github.com/jwilder/docker-gen/releases/download/$DOCKER_GEN_VER COPY network_internal.conf /etc/nginx/ +COPY custom-nginx.conf /etc/nginx/conf.d/custom-nginx.conf + COPY . /app/ WORKDIR /app/ diff --git a/custom-nginx.conf b/custom-nginx.conf new file mode 100644 index 0000000..c5c9e2d --- /dev/null +++ b/custom-nginx.conf @@ -0,0 +1,3 @@ +# All all endpoints for all virtual hosts to +# make requests with large bodies. +client_max_body_size 1024m;