mirror of
https://gitee.com/iresty/apisix.git
synced 2024-12-04 21:17:36 +08:00
d2ea344fc1
This reverts commit b13f167445
.
Co-authored-by: Vinci Xu <277040271@qq.com>
1.4 KiB
1.4 KiB
Hot reload
APISIX plugins are hot-loaded. No matter you add, delete or modify plugins, you don't need to restart the service.
If your APISIX node has the Admin API turned on, just send an HTTP request through admin API:
curl http://127.0.0.1:9080/apisix/admin/plugins/reload -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT
Note: if you disable a plugin which has been configured as part of your rule (in the plugins
field of route
, etc.),
the its execution will be skipped.
Hot reload in stand-alone mode
For stand-alone mode, see plugin related section in stand alone mode.