mirror of
https://gitee.com/iresty/apisix.git
synced 2024-12-15 09:21:26 +08:00
ad2b67ee81
* feature: supported to added pluings to stream routes. * feature: supported MQTT protocol.
20 lines
768 B
Plaintext
Vendored
20 lines
768 B
Plaintext
Vendored
return {
|
|
modules = {
|
|
["lua.*"] = "lua",
|
|
["lua/apisix/*"] = "apisix",
|
|
["lua/apisix/admin/*"] = "admin",
|
|
["lua/apisix/core/*"] = "core",
|
|
["lua/apisix/http/*"] = "http",
|
|
["lua/apisix/http/router/*"] = "http/router",
|
|
["lua/apisix/plugins/*"] = "plugins",
|
|
["lua/apisix/plugins/grpc-transcode/*"] = "plugins/grpc-transcode",
|
|
["lua/apisix/plugins/prometheus/*"] = "plugins/prometheus",
|
|
["lua/apisix/plugins/zipkin/*"] = "plugins/zipkin",
|
|
|
|
-- can not enable both at http and stream, will fix it later.
|
|
-- ["lua/apisix/stream/*"] = "stream",
|
|
-- ["lua/apisix/stream/plugins/*"] = "stream/plugins",
|
|
-- ["lua/apisix/stream/router/*"] = "stream/router",
|
|
},
|
|
}
|