Re: [I] help request: How to access the new dashboard after upgrading to APISIX v3.13.0? [apisix]

2025-08-23 Thread via GitHub


juzhiyuan commented on issue #12397:
URL: https://github.com/apache/apisix/issues/12397#issuecomment-3217497158

   @marco-jem no need to send twice duplicated question. Please check the 
reply: https://github.com/apache/apisix/issues/12543#issuecomment-3217009356


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

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [I] help request: How to access the new dashboard after upgrading to APISIX v3.13.0? [apisix]

2025-08-22 Thread via GitHub


marco-jem commented on issue #12397:
URL: https://github.com/apache/apisix/issues/12397#issuecomment-3213878815

   Hello! I'm trying to install APISIX from source and while APISIX itself is 
up and running I'm unable to activate the dashboard.
   
   I tried to add
   ```
   admin:
 enable_admin_ui: true # Enable embedded APISIX Dashboard UI.
   ```
   to the configuration file but i get the 404 error.
   
   As far as I can see the /ui/ path is configured in NGINX
   ```
   server {
   listen 0.0.0.0:9180;
   log_not_found off;
   
   # admin configuration snippet starts
   
   # admin configuration snippet ends
   
   set $upstream_scheme 'http';
   set $upstream_host   $http_host;
   set $upstream_uri'';
   
   allow 127.0.0.0/24;
   deny all;
   
   location /apisix/admin {
   content_by_lua_block {
   apisix.http_admin()
   }
   }
   
   location = /ui {
   return 301 /ui/;
   }
   location ^~ /ui/ {
   rewrite ^/ui/(.*)$ /$1 break;
   root /opt/apisix/apisix-release/3.13/ui;
   try_files $uri /index.html =404;
   gzip on;
   gzip_types text/css application/javascript application/json;
   expires 7200s;
   add_header Cache-Control "private,max-age=7200";
   }
   }
   ```
   
   but it points to the folder /opt/apisix/apisix-release/3.13/ui which does 
not exist.
   
   The forlder /opt/apisix/apisix-release/3.13 is a clone of the GitHub 
repository made with the command
   ```
   git clone --depth 1 --branch release/3.13 
https://github.com/apache/apisix.git apisix-release/3.13
   ```
   and ui folder is not there.
   
   Could you please add instructions in the Docs on how the dasboard should be 
installed / configured / enabled?


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

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [I] help request: How to access the new dashboard after upgrading to APISIX v3.13.0? [apisix]

2025-07-09 Thread via GitHub


calycekr commented on issue #12397:
URL: https://github.com/apache/apisix/issues/12397#issuecomment-3051980491

   @Baoyuantop Is it possible that the APISIX 3.13.0 Docker image I initially 
used is different from the one currently available?
   The one I used was the Docker image that came out along with the GitHub 
release.
   Now, after pulling the image again, it seems to be working normally.


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

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [I] help request: How to access the new dashboard after upgrading to APISIX v3.13.0? [apisix]

2025-07-09 Thread via GitHub


calycekr commented on issue #12397:
URL: https://github.com/apache/apisix/issues/12397#issuecomment-3051954501

   @Baoyuantop Hmm... the issue still occurs. When I access the 
`localhost:9180/ui/`, I see the following message:
   404 Not Found
   openresty
   Powered by [APISIX](https://apisix.apache.org/).


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

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [I] help request: How to access the new dashboard after upgrading to APISIX v3.13.0? [apisix]

2025-07-07 Thread via GitHub


Baoyuantop commented on issue #12397:
URL: https://github.com/apache/apisix/issues/12397#issuecomment-3044323356

   If there is still a problem, please open it again.


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

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [I] help request: How to access the new dashboard after upgrading to APISIX v3.13.0? [apisix]

2025-07-07 Thread via GitHub


Baoyuantop closed issue #12397: help request: How to access the new dashboard 
after upgrading to APISIX v3.13.0?
URL: https://github.com/apache/apisix/issues/12397


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

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [I] help request: How to access the new dashboard after upgrading to APISIX v3.13.0? [apisix]

2025-07-03 Thread via GitHub


mikyll commented on issue #12397:
URL: https://github.com/apache/apisix/issues/12397#issuecomment-3032097796

   To can access the new dashboard you have to enable it in `config.yaml`, if 
not already:
   
   ```yaml
   admin:
   enable_admin_ui: true # Enable embedded APISIX Dashboard UI.
   ```
   
   Then you can access it at URI `/ui`, on Admin API port (default `9180`). 
Example with localhost: [https://localhost:9180/ui](http://localhost:9180/ui)


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

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



[I] help request: How to access the new dashboard after upgrading to APISIX v3.13.0? [apisix]

2025-07-03 Thread via GitHub


calycekr opened a new issue, #12397:
URL: https://github.com/apache/apisix/issues/12397

   ### Description
   
   #12311 
   
   We recently upgraded our project to version 3.13, and I'm having trouble 
figuring out how to access the dashboard. 
   
   Could anyone provide guidance or point me to the correct documentation on 
how to access the dashboard in this version? Any steps or tips would be greatly 
appreciated.
   
   Thanks in advance!
   
   
   ### Environment
   
   Version: 3.13.0


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

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]