Docker repo setup with already established Reverse Proxy with nginx

I have a new nexus repository set up however im having issues connecting to the docker repo i created. The nginx reverse proxy is already set up with SSL so i just need to know what to configure differently. I already tried the following however it didnt work
here is my connector settings

and here is my nginx configs from path /etc/nginx/sites-available/default

        location /v2/ {

            proxy_pass                          http://10.0.25.65/;



            proxy_set_header  Host              $http_host;   # required for docker client's sake
            proxy_set_header  X-Real-IP         $remote_addr; # pass on real client's IP
            proxy_set_header  X-Forwarded-For   $proxy_add_x_forwarded_for;
            proxy_set_header  X-Forwarded-Proto $scheme;
            proxy_read_timeout                  900;

Docker registries always need to run on web context path “/”. So you’ll need to configure either a virtual host or separate port in nginx that is listening on path “/”, and directing requests to the docker repository’s URL.

Hi Rich,

Thanks for the quick response… what would you recommend? and is there a procedure you can point me to?

Respectfully,