belongwqz opened a new issue #1336:
URL: https://github.com/apache/apisix-dashboard/issues/1336


   # Feature request
   
   ## Please describe your feature
   
   Support subpath to use the reverse proxy
   
   ## Describe the solution you'd like
   
   When start dashboard  via manager-api, the address is `http://host:port`, if 
we can setup a subpath to the address, then we can config a reverse proxy for 
the dashboard. Example:
   `conf.yaml`:
   ```
   conf:
     listen:0.0.0.0
     port:8888
     root_url:http://{the_server_ip}:8888/apisix_dashboard/
   ...
   ```
   
    `nginx.conf`:
   ```
   location /apisix_dashboard/ {
       proxy_pass http://{the_server_ip}:8888;
   }
   ```
   
   ## Describe alternatives you've considered
   
   A clear and concise description of any alternative solutions or features 
you've considered.
   
   ## Additional context
   
   Add any other context or screenshots about the feature request here.
   


----------------------------------------------------------------
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