apisix/conf/config.yaml
YuanSheng Wang 8cfd7d4180
feature: implemented routes API for admin user, allowed user to manage route. (#79)
* 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.
2019-06-13 12:01:36 +08:00

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