apisix/doc/zh-cn
2021-02-06 00:01:08 +08:00
..
plugins docs(api-breaker): the plugin docs is synchronized with the schema (#3470) 2021-02-01 18:09:06 +08:00
admin-api.md docs: clarify the default value of Upstream.pass_host (#3468) 2021-02-01 19:22:20 +08:00
architecture-design.md feat: customed config.yaml when apisix start (#2101) 2021-01-29 11:19:46 +08:00
batch-processor.md docs: lint Markdown for multiple consecutive blank lines (#3047) 2020-12-17 22:25:30 +08:00
benchmark.md doc: fixed image links in zh-cn benchmark (#1896) 2020-07-24 16:30:51 +08:00
customize-nginx-configuration.md feat: support more customize configure in nginx.conf (#3204) 2021-01-07 19:21:02 +08:00
debug-function.md feat: How to distinguish whether the 5xx status code (eg 500) comes from upstream or apisix (#2817) 2020-11-27 18:33:02 +08:00
discovery.md docs: lint Markdown for multiple consecutive blank lines (#3047) 2020-12-17 22:25:30 +08:00
getting-started.md feat(CI): add a GitHub Action to lint the Markdown (#3041) 2020-12-15 09:29:47 +08:00
grpc-proxy.md feat: support gRPCS (#3411) 2021-01-26 11:04:16 +08:00
health-check.md docs: fix control-api.md link (#3511) 2021-02-04 13:12:02 +08:00
how-to-build.md docs: update rpm package to 2.2 (#3280) 2021-01-14 13:16:14 +08:00
https.md docs: fix case of Python (#3277) 2021-01-14 11:24:26 +08:00
install-dependencies.md chore: fixed install luarocks (#3536) 2021-02-06 00:01:08 +08:00
mtls.md feat: Support admin API authentication with SSL certificates (#1747) 2020-07-21 11:41:11 +08:00
plugin-develop.md docs: lint Markdown files (#3177) 2021-01-03 11:26:40 +08:00
plugin-interceptors.md docs: fix some incomplete shell commands in the examples (#3338) 2021-01-20 09:02:01 +08:00
plugins.md Revert "refactor: separate admin and proxy port in default config (#2802)" (#2871) 2020-11-28 19:05:14 +08:00
profile.md doc: Refactoring docs to support docsify (#1724) 2020-06-19 12:03:55 +08:00
README.md docs: add link of control-api.md to Chinese index. (#3354) 2021-01-20 19:46:39 +08:00
stand-alone.md docs: enrich stand alone mode's doc (#3264) 2021-01-13 14:49:33 +08:00
stream-proxy.md Revert "refactor: separate admin and proxy port in default config (#2802)" (#2871) 2020-11-28 19:05:14 +08:00

参考文档

插件

General

  • batch-requests: 以 http pipeline 的方式在网关一次性发起多个 http 请求。
  • 插件热加载:无需重启服务,完成插件热加载或卸载。
  • HTTPS/TLS:根据 TLS 扩展字段 SNI(Server Name Indication) 动态加载证书。
  • serverless:允许在 APISIX 中的不同阶段动态运行 Lua 代码。
  • redirect: URI 重定向。

Transformation

  • response-rewrite: 支持自定义修改返回内容的 status codebodyheaders
  • proxy-rewrite: 支持自定义修改 proxy 到上游的信息。
  • grpc-transcodeREST <--> gRPC 转码。
  • fault-injection:故障注入,可以返回指定的响应体、响应码和响应时间,从而提供了不同的失败场景下处理的能力,例如服务失败、服务过载、服务高延时等。

Authentication

Security

Traffic

  • limit-req:基于漏桶原理的请求限速实现。
  • limit-conn:限制并发请求(或并发连接)。
  • limit-count:基于“固定窗口”的限速实现。
  • proxy-cache:代理缓存插件提供缓存后端响应数据的能力。
  • request-validation: 请求验证。
  • proxy-mirror:代理镜像插件提供镜像客户端请求的能力。
  • api-breaker: API的断路器在状态不正常的情况下停止将请求转发到上游。
  • traffic-split:允许用户逐步控制各个上游之间的流量百分比。

Monitoring

  • prometheus:以 Prometheus 格式导出 APISIX 自身的状态信息,方便被外部 Prometheus 服务抓取。
  • OpenTracing:支持 Zikpin 和 Apache SkyWalking。
  • Skywalking: Supports Apache SkyWalking.

Loggers

部署

AWS

推荐的方法是在 AWS Fargate 上使用 AWS CDK 部署 APISIX这有助于将 APISIX 层和上游层分离到具有自动缩放功能的完全托管和安全的无服务器容器计算环境之上。

Kubernetes

请参阅指南并了解如何在 Kubernetes 中部署 APISIX。