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:
parent
b95192075b
commit
17b41c1ef0
2 changed files with 5 additions and 0 deletions
|
@ -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/
|
||||
|
||||
|
|
3
custom-nginx.conf
Normal file
3
custom-nginx.conf
Normal file
|
@ -0,0 +1,3 @@
|
|||
# All all endpoints for all virtual hosts to
|
||||
# make requests with large bodies.
|
||||
client_max_body_size 1024m;
|
Loading…
Reference in a new issue