Increate client body size for all review apps.

Review apps consistently run into issues because the default
limit is quite small.
This commit is contained in:
Leta Montopoli 2021-02-16 13:27:32 -05:00
parent b95192075b
commit 17b41c1ef0
2 changed files with 5 additions and 0 deletions

View file

@ -28,6 +28,8 @@ RUN wget https://github.com/jwilder/docker-gen/releases/download/$DOCKER_GEN_VER
COPY network_internal.conf /etc/nginx/ COPY network_internal.conf /etc/nginx/
COPY custom-nginx.conf /etc/nginx/conf.d/custom-nginx.conf
COPY . /app/ COPY . /app/
WORKDIR /app/ WORKDIR /app/

3
custom-nginx.conf Normal file
View file

@ -0,0 +1,3 @@
# All all endpoints for all virtual hosts to
# make requests with large bodies.
client_max_body_size 1024m;