nginx.conf 121 B

1234567
  1. server {
  2. listen 80;
  3. root /usr/share/nginx/html;
  4. location /v2 {
  5. proxy_pass http://docker-registry:5000;
  6. }
  7. }