You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by GitBox <gi...@apache.org> on 2022/10/10 09:13:14 UTC

[GitHub] [apisix-dashboard] Nawbc opened a new issue, #2635: bug: dashboard throws csp errors

Nawbc opened a new issue, #2635:
URL: https://github.com/apache/apisix-dashboard/issues/2635

   ### Current Behavior
   
   ![image](https://user-images.githubusercontent.com/45007226/194832172-1bfae7f1-b78d-4626-8c60-76accdfd0bc7.png)
   
   And embbeded grafana is forbid. (has set allow_embedding = true)
   
   ### Expected Behavior
   
   _No response_
   
   ### Error Logs
   
   _No response_
   
   ### Steps to Reproduce
   
   # Apisix Config
   apisix:
     node_listen: 9080 # APISIX listening port
     enable_ipv6: false
   
     allow_admin: # http://nginx.org/en/docs/http/ngx_http_access_module.html#allow
       - 0.0.0.0/0 # We need to restrict ip access rules for security. 0.0.0.0/0 is for test.
   
     admin_key:
       - name: 'admin'
         key: edd1c9f034335f136f87ad84b625c8f1
         role: admin # admin: manage all configuration data
       - name: 'viewer'
         key: 4054f7cf07e344346cd3f287985e76a2
         role: viewer
   
     enable_control: true
     control:
       ip: '0.0.0.0'
       port: 9092
   
   etcd:
     host: # it's possible to define multiple etcd hosts addresses of the same etcd cluster.
       - 'http://etcd:2379' # multiple etcd address
     prefix: '/apisix' # apisix configurations prefix
     timeout: 30 # 30 seconds
   
   discovery:
     nacos:
       host:
         - 'http://nacos:letscollab@nacos:8848'
   
   plugin_attr:
     prometheus:
       export_addr:
         ip: '0.0.0.0'
         port: 9091
   # Dashboard Config
   conf:
     listen:
       host: 0.0.0.0 # `manager api` listening ip or host name
       port: 9000 # `manager api` listening port
     allow_list: # If we don't set any IP list, then any IP access is allowed by default.
       - 0.0.0.0/0
     etcd:
       endpoints: # supports defining multiple etcd host addresses for an etcd cluster
         - "http://etcd:2379"
           # yamllint disable rule:comments-indentation
           # etcd basic auth info
       # username: "root"    # ignore etcd username if not enable etcd auth
       # password: "123456"  # ignore etcd password if not enable etcd auth
       mtls:
         key_file: "" # Path of your self-signed client side key
         cert_file: "" # Path of your self-signed client side cert
         ca_file: "" # Path of your self-signed ca cert, the CA is used to sign callers' certificates
       # prefix: /apisix     # apisix config's prefix in etcd, /apisix by default
     log:
       error_log:
         level: warn # supports levels, lower to higher: debug, info, warn, error, panic, fatal
         file_path:
           logs/error.log # supports relative path, absolute path, standard output
           # such as: logs/error.log, /tmp/logs/error.log, /dev/stdout, /dev/stderr
       access_log:
         file_path:
           logs/access.log # supports relative path, absolute path, standard output
           # such as: logs/access.log, /tmp/logs/access.log, /dev/stdout, /dev/stderr
           # log example: 2020-12-09T16:38:09.039+0800	INFO	filter/logging.go:46	/apisix/admin/routes/r1	{"status": 401, "host": "127.0.0.1:9000", "query": "asdfsafd=adf&a=a", "requestId": "3d50ecb8-758c-46d1-af5b-cd9d1c820156", "latency": 0, "remoteIP": "127.0.0.1", "method": "PUT", "errs": []}
   authentication:
     secret:
       secret # secret for jwt token generation.
       # NOTE: Highly recommended to modify this value to protect `manager api`.
       # if it's default value, when `manager api` start, it will generate a random string to replace it.
     expire_time: 3600 # jwt token expire time, in second
     users: # yamllint enable rule:comments-indentation
       - username: letscollab # username and password for login `manager api`
         password: letscollab
   
   plugins: # plugin list (sorted in alphabetical order)
     - api-breaker
     - authz-keycloak
     - basic-auth
     - batch-requests
     - consumer-restriction
     - cors
     # - dubbo-proxy
     - echo
     # - error-log-logger
     # - example-plugin
     - fault-injection
     - grpc-transcode
     - hmac-auth
     - http-logger
     - ip-restriction
     - jwt-auth
     - kafka-logger
     - key-auth
     - limit-conn
     - limit-count
     - limit-req
     # - log-rotate
     # - node-status
     - openid-connect
     - prometheus
     - proxy-cache
     - proxy-mirror
     - proxy-rewrite
     - redirect
     - referer-restriction
     - request-id
     - request-validation
     - response-rewrite
     - serverless-post-function
     - serverless-pre-function
     # - skywalking
     - sls-logger
     - syslog
     - tcp-logger
     - udp-logger
     - uri-blocker
     - wolf-rbac
     - zipkin
     - server-info
     - traffic-split
   
   
   
   
   ### Environment
   
   - APISIX version 2.15.0-alpine:
   - Operating system ubuntu:


-- 
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] Nawbc closed issue #2635: bug: dashboard throws csp errors

Posted by GitBox <gi...@apache.org>.
Nawbc closed issue #2635: bug: dashboard throws csp errors
URL: https://github.com/apache/apisix-dashboard/issues/2635


-- 
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] Nawbc closed issue #2635: bug: dashboard throws csp errors

Posted by GitBox <gi...@apache.org>.
Nawbc closed issue #2635: bug: dashboard throws csp errors
URL: https://github.com/apache/apisix-dashboard/issues/2635


-- 
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] tokers commented on issue #2635: bug: dashboard throw csp errors

Posted by GitBox <gi...@apache.org>.
tokers commented on issue #2635:
URL: https://github.com/apache/apisix-dashboard/issues/2635#issuecomment-1273005373

   cc @bzp2010 .


-- 
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 #2635: bug: dashboard throws csp errors

Posted by GitBox <gi...@apache.org>.
guoqqqi commented on issue #2635:
URL: https://github.com/apache/apisix-dashboard/issues/2635#issuecomment-1273026508

   @Nawbc please refer to https://github.com/apache/apisix-dashboard/issues/2492
   


-- 
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] hf400159 commented on issue #2635: bug: dashboard throws csp errors

Posted by GitBox <gi...@apache.org>.
hf400159 commented on issue #2635:
URL: https://github.com/apache/apisix-dashboard/issues/2635#issuecomment-1273025941

   hi, you can refer to: https://github.com/apache/apisix-dashboard/blob/master/api/conf/conf.yaml#L69


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