You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by "idb-root (via GitHub)" <gi...@apache.org> on 2023/04/14 04:10:55 UTC

[GitHub] [apisix-dashboard] idb-root opened a new issue, #2791: apisix-dashboard3.0.1 点击插件时白屏,前端地址:https://xxx.xxx.com/plugin/list

idb-root opened a new issue, #2791:
URL: https://github.com/apache/apisix-dashboard/issues/2791

   1、apisix-dashboard3.0.1 点击【插件】时白屏,前端地址:https://xxx.xxx.com/plugin/list
   
   2、apisix:
     2.1、apisix接口返回null:
       https://xx.xx.com/apisix/admin/plugins?all=true
       这个接口返回的data是null。
       {"code":0,"message":"","data":null,"request_id":"90751c6df7446f7743475513e6805b71"}
   
     2.2、通过以下命令可以正常获取到数据。
       curl "http://127.0.0.1:9180/apisix/admin/plugins?all=true" \ -H 'X-API-KEY: XXX'
   
   注:apisix-dashboard2.15.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: notifications-unsubscribe@apisix.apache.org.apache.org

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


[GitHub] [apisix-dashboard] idb-root commented on issue #2791: apisix-dashboard3.0.1 点击插件时白屏,前端地址:https://xxx.xxx.com/plugin/list

Posted by "idb-root (via GitHub)" <gi...@apache.org>.
idb-root commented on issue #2791:
URL: https://github.com/apache/apisix-dashboard/issues/2791#issuecomment-1521322965

   conf:
     listen:
       host: 0.0.0.0
       port: 9000
     etcd:
       prefix: "/apisix"
       endpoints:
         - apisix-etcd:2379
     log:
       error_log:
         level: warn
         file_path: /dev/stderr
       access_log:
         file_path: /dev/stdout
     security:
       access_control_allow_origin: "https://grafana-test.hh-medic.com"
       access_control_allow_credentials: true          # support using custom cors configration
       access_control_allow_headers: "Authorization"
       access_control-allow_methods: "*"
       x_frame_options: "deny"
       content_security_policy: "default-src 'self'; script-src 'self' 'unsafe-eval' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; frame-src *"  # You can set frame-src to provide content for your grafana panel.    
   authentication:
     secret: secret
     expire_time: 3600
     users:
   plugin_attr:
     prometheus:
       export_addr:
         ip: "0.0.0.0"
         port: 9091                    


-- 
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: notifications-unsubscribe@apisix.apache.org

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


[GitHub] [apisix-dashboard] lemonrains commented on issue #2791: apisix-dashboard3.0.1 点击插件时白屏,前端地址:https://xxx.xxx.com/plugin/list

Posted by "lemonrains (via GitHub)" <gi...@apache.org>.
lemonrains commented on issue #2791:
URL: https://github.com/apache/apisix-dashboard/issues/2791#issuecomment-1570138762

   Got the same issue, and solved by @walkerZsh mentioned .


-- 
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: notifications-unsubscribe@apisix.apache.org

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


[GitHub] [apisix-dashboard] walkerZsh commented on issue #2791: apisix-dashboard3.0.1 点击插件时白屏,前端地址:https://xxx.xxx.com/plugin/list

Posted by "walkerZsh (via GitHub)" <gi...@apache.org>.
walkerZsh commented on issue #2791:
URL: https://github.com/apache/apisix-dashboard/issues/2791#issuecomment-1527594633

   I also encountered this problem when upgrading to 3.0.1, but I added the plugins list in the config configuration and it showed up normally
   
   ```
   plugins:
     - xxxxxx
     - xxxxxx
   ```
   https://github.com/apache/apisix-dashboard/blob/master/api/conf/conf.yaml


-- 
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: notifications-unsubscribe@apisix.apache.org

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


[GitHub] [apisix-dashboard] Baoyuantop commented on issue #2791: apisix-dashboard3.0.1 点击插件时白屏,前端地址:https://xxx.xxx.com/plugin/list

Posted by "Baoyuantop (via GitHub)" <gi...@apache.org>.
Baoyuantop commented on issue #2791:
URL: https://github.com/apache/apisix-dashboard/issues/2791#issuecomment-1521506736

   > conf: listen: host: 0.0.0.0 port: 9000 etcd: prefix: "/apisix" endpoints: - apisix-etcd:2379 log: error_log: level: warn file_path: /dev/stderr access_log: file_path: /dev/stdout security: access_control_allow_origin: "https://grafana-test.hh-medic.com" access_control_allow_credentials: true # support using custom cors configration access_control_allow_headers: "Authorization" access_control-allow_methods: "*" x_frame_options: "deny" content_security_policy: "default-src 'self'; script-src 'self' 'unsafe-eval' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; frame-src *" # You can set frame-src to provide content for your grafana panel. authentication: secret: secret expire_time: 3600 users: plugin_attr: prometheus: export_addr: ip: "0.0.0.0" port: 9091
   
   I mean to provide the configuration data stored in the etcd used by the dashboard


-- 
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: notifications-unsubscribe@apisix.apache.org

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


[GitHub] [apisix-dashboard] karl-chanel commented on issue #2791: apisix-dashboard3.0.1 点击插件时白屏,前端地址:https://xxx.xxx.com/plugin/list

Posted by "karl-chanel (via GitHub)" <gi...@apache.org>.
karl-chanel commented on issue #2791:
URL: https://github.com/apache/apisix-dashboard/issues/2791#issuecomment-1601955862

    I encountered the same issue. I'll try this method later,see if it works.


-- 
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: notifications-unsubscribe@apisix.apache.org

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


[GitHub] [apisix-dashboard] GreenAppleOne commented on issue #2791: apisix-dashboard3.0.1 点击插件时白屏,前端地址:https://xxx.xxx.com/plugin/list

Posted by "GreenAppleOne (via GitHub)" <gi...@apache.org>.
GreenAppleOne commented on issue #2791:
URL: https://github.com/apache/apisix-dashboard/issues/2791#issuecomment-1514079029

   咋没人回复了,这么多问题


-- 
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: notifications-unsubscribe@apisix.apache.org

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


[GitHub] [apisix-dashboard] Baoyuantop commented on issue #2791: apisix-dashboard3.0.1 点击插件时白屏,前端地址:https://xxx.xxx.com/plugin/list

Posted by "Baoyuantop (via GitHub)" <gi...@apache.org>.
Baoyuantop commented on issue #2791:
URL: https://github.com/apache/apisix-dashboard/issues/2791#issuecomment-1518934319

   Can you provide the configuration data in your etcd?


-- 
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: notifications-unsubscribe@apisix.apache.org

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


Re: [I] apisix-dashboard3.0.1 点击插件时白屏,前端地址:https://xxx.xxx.com/plugin/list [apisix-dashboard]

Posted by "zhouwenqi (via GitHub)" <gi...@apache.org>.
zhouwenqi commented on issue #2791:
URL: https://github.com/apache/apisix-dashboard/issues/2791#issuecomment-1882394948

   > I encountered the same issue. I'll try this method later,see if it works.
   
   me too...


-- 
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: notifications-unsubscribe@apisix.apache.org

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


[GitHub] [apisix-dashboard] guoqqqi commented on issue #2791: apisix-dashboard3.0.1 点击插件时白屏,前端地址:https://xxx.xxx.com/plugin/list

Posted by "guoqqqi (via GitHub)" <gi...@apache.org>.
guoqqqi commented on issue #2791:
URL: https://github.com/apache/apisix-dashboard/issues/2791#issuecomment-1517214643

   @Baoyuantop It seems to be caused by the `disable` attribute, do you have time to look at the problem 🤔


-- 
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: notifications-unsubscribe@apisix.apache.org

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


[GitHub] [apisix-dashboard] idb-root commented on issue #2791: apisix-dashboard3.0.1 点击插件时白屏,前端地址:https://xxx.xxx.com/plugin/list

Posted by "idb-root (via GitHub)" <gi...@apache.org>.
idb-root commented on issue #2791:
URL: https://github.com/apache/apisix-dashboard/issues/2791#issuecomment-1521325735

   > @Baoyuantop It seems to be caused by the `disable` attribute, do you have time to look at the problem 🤔
   
   Which attribute is disabled causing it?
   
   


-- 
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: notifications-unsubscribe@apisix.apache.org

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


Re: [I] apisix-dashboard3.0.1 点击插件时白屏,前端地址:https://xxx.xxx.com/plugin/list [apisix-dashboard]

Posted by "OnGoingLzy (via GitHub)" <gi...@apache.org>.
OnGoingLzy commented on issue #2791:
URL: https://github.com/apache/apisix-dashboard/issues/2791#issuecomment-2060242604

   apisix dashboard与apisix的配置文件中都配置plugins即可解决


-- 
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: notifications-unsubscribe@apisix.apache.org

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