jiangmincong opened a new issue #304:
URL: https://github.com/apache/pulsar-manager/issues/304


   Why do requests with url starting with /admin/v2 report a 404 error, and 
/pulsar-manager/admin/v2 is indeed normal;
   My nginx configuration is as follows:
   server {
   listen 9527;
   server_name localhost;
   
   location / {
   root /root/pulsar-manage/dist;
   index index.html index.htm;
   }
   location /admin {
   proxy_pass http://localhost:7750/pulsar-manager/admin;
   }
   location /pulsar-manager {
   proxy_pass http://localhost:7750;
   }
   location /lookup {
   proxy_pass http://localhost:7750;
   }
   }


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to