Replies: 1 comment 1 reply
-
|
I see it tries to get JS bundle from:
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to setup a reverse proxy for CVAT server. In a network, I have two servers, say
A.netandB.net. OnlyA.netcan be accessed from outside, and it has Apache2 installed. OnB.net, I have CVAT server configured and running at port8080. BecauseB.netcannot be seen from outside, I setup a reverse proxy onA.netwith the Apache2 configurationProxyPass "/cvat" "http://B.net:8080"ProxyPassReverse "/cvat" "http://B.net:8080"I have tried to visit
http://B.net:8080fromA.net, and everything looks fine. However, when I tried to visitedhttp://A.net/cvatfrom outside, it can only show the title "Computer Vision Annotation Tool", but no page content. The browser concole shows a 404 error:GET http://A.net/cvat-ui.580642541947bec0314e.min.js net::ERR_ABORTED 404 (Not Found)Can someone please tell me what I did wrong in the configurations? Thanks.
Beta Was this translation helpful? Give feedback.
All reactions