nginx.conf 334 B

123456789101112
  1. server {
  2. listen 80;
  3. root /usr/share/nginx/html;
  4. # the below line has no effect
  5. # to allow unchecked upload limits, add the line below in the nginx.conf at sslwp docker where it is the first point of contact by a client call
  6. #client_max_body_size 0;
  7. location /v2 {
  8. proxy_pass http://docker-registry:5000;
  9. }
  10. }