I am trying to change the client_max_body_size in the Nginx server running on docker.
I have tried to add the following to my docker file with no luck
RUN { echo 'client_max_body_size 100M;'; } > /etc/nginx/nginx.conf
and also
COPY nginx.conf /etc/nginx/nginx.conf
(there is a copy of the nginx.conf file with the client_max_body_size attribute added)
Does anyone know the correct way of doing this?