mirror of
https://gitee.com/iresty/apisix.git
synced 2024-12-04 21:17:36 +08:00
8cfd7d4180
* feature: supported to generate admin API basic configurations when the admin API is enabled. * feature: supported to manage route API for admin user, it contains: PUT, GET, DELETE and POST. * feature: used json schema to check if the request configuration is valid.
19 lines
440 B
YAML
19 lines
440 B
YAML
apisix:
|
|
node_listen: 9080 # Apisix listening port
|
|
enable_heartbeat: true
|
|
enable_admin: true
|
|
allow_admin: "127.0.0.1/24"
|
|
|
|
etcd:
|
|
host: "http://127.0.0.1:2379" # etcd address
|
|
prefix: "/apisix" # apisix configurations prefix
|
|
timeout: 1 # 1 seconds
|
|
|
|
plugins: # plugin list
|
|
- example-plugin
|
|
- limit-req
|
|
- limit-count
|
|
- key-auth
|
|
- prometheus
|
|
- limit-conn
|