title |
---|
FAQ |
If you need a Vue.js build of the Apache APISIX Dashboard 1.0, use the master-vue branch.
The 2.0 version of the dashboard removed MySQL from version 1.5 and will operate directly on etcd.
If you are using Apache APISIX below v2.0, be aware that the data from the etcd v2 API is not compatible with the data from the v3 API. Apache APISIX Dashboard v2.0 and above uses the etcd v3 API, and apisix 1.5 and below uses the etcd v2 API.
4. After modifying the plugin schema or creating a custom plugin in Apache APISIX, why can't I find it on the dashboard?
Since the Dashboard caches the jsonschema data of the plugins in Apache APISIX, you need to synchronize the data in the Dashboard after you create your custom plugins in Apache APISIX, which currently only supports manual operation. Please follow the following guide.
-
Confirm that your APISIX is running and has enabled control API (enabled by default and only runs local access) Refer to the beginning in: https://apisix.apache.org/docs/apisix/control-api
-
Execute the following commands to export jsonchema on your APISIX server (if it is configured for non-local access, it does not need to be executed on your APISIX server, and the access IP and port should be modified accordingly)
curl 127.0.0.1:9090/v1/schema > schema.json
Refer to https://apisix.apache.org/docs/apisix/control-api#get-v1schema
-
Copy the exported
schema.json
to theconf
directory in the Dashboard working directory (About working directory, please refer to https://github.com/apache/apisix-dashboard/blob/master/docs/en/latest/deploy.md#working-directory) -
Restart the Manager API
We use go-swagger to generate Swagger 2.0 documents, and then convert them to markdown format so that they can be viewed directly in the github repository. Specific steps are as follows:
-
Write comments according to Specification. For details, please refer to the existing example
api/internal/handler/route/route.go
in this project. -
Use the
go-swagger
tool to generate Swagger 2.0 documents.
$ swagger generate spec -o ./docs/en/latest/api/api.yaml --scan-models
- Use the
swagger-markdown
tool to convert Swagger 2.0 documents into markdown documents.
$ swagger-markdown -i ./docs/en/latest/api/api.yaml
- Allow all IPv4 access
By default, the IPv4 range of 127.0.0.0/24
is allowed to access APISIX Dashboard
. If you want to allow all IPv4 access, then just configure conf.allow_list
in the configuration file of conf/conf.yaml
as follows:
conf:
allow_list:
- 0.0.0.0/0
- Allow all IPv6 access
By default, the IPv6 range of ::1
is allowed to access APISIX Dashboard
. If you want to allow all IPv6 access, then just configure conf.allow_list
in the configuration file of conf/conf.yaml
as follows:
conf:
allow_list:
- ::/0
- Allow all IP access
If you want to allow all IPs to access APISIX Dashboard
, you only need to do the following configuration in the configuration file of conf/conf.yaml
:
conf:
allow_list:
Restart manager-api
, all IPs can access APISIX Dashboard
.
Note: You can use this method in development and test environment to allow all IPs to access your APISIX Dashboard
instance, but it is not safe to use it in a production environment. In production environment, please only authorize specific IP addresses or address ranges to access your instance.
Currently we reject import duplicate route, that is to say when you import a route which has the same attributes, all of the uri
uris
host
hosts
remote_addr
remote_addrs
priority
vars
and filter_func
, as the existing route, you will get an error while importing a route from OAS3.0.
Modifying the Grafana configuration:
- Enable anonymous access:
# grep 'auth.anonymous' -A 3 defaults.ini
[auth.anonymous]
# enable anonymous access
enabled = true
- Allow access via iframe
# grep 'allow_embedding' defaults.ini
allow_embedding = true
···
If the domain name of the address is configured as HTTPS, the embedded grafana will jump to the login page after logging in. You can refer to this solution:
It's best for Grafana to configure the domain name in the same way. Otherwise there will be problems with address resolution.