Workbench 2 loading auth page

When I navigate to workbench2 arvados renders the auth page from the sso server instead. I can login however when I click the redirect link it renders the same page under the workbench2 domain. I originally thought it was an nginx configuration issue that was causing the domain to resolve to the wrong server block but now I’m not so sure.

So a solution to this was editing this block.

  listen       auth.ClusterID.example.com:443 ssl;
  server_name  auth.ClusterID.example.com;

To

  listen       443 ssl;
  server_name  auth.ClusterID.example.com;

Weird. It does sound like your nginx virtual hosts got confused, glad you figured it out.

Ywah, also the top block is what is listed in the install documentation.

I’ll see about fixing the install docs.

Thanks @medcelerate, the documentation has been fixed.