proxy-rewrite

描述

proxy-rewrite 是上游代理信息重写插件,支持对 schemeurihost 等信息的重写。

属性

NameTypeRequirementDefaultValidDescription
schemestring可选“http”[“http”, “https”]不推荐使用。应该在 Upstream 的 scheme 字段设置上游的 scheme。
uristring可选转发到上游的新 uri 地址。
methodstring可选[“GET”, “POST”, “PUT”, “HEAD”, “DELETE”, “OPTIONS”,”MKCOL”, “COPY”, “MOVE”, “PROPFIND”, “PROPFIND”,”LOCK”, “UNLOCK”, “PATCH”, “TRACE”]将route的请求方法代理为该请求方法。
regex_uriarray[string]可选转发到上游的新 uri 地址, 使用正则表达式匹配来自客户端的uri,当匹配成功后使用模板替换转发到上游的uri, 未匹配成功时将客户端请求的uri转发至上游。当 uriregex_uri 同时存在时,uri 优先被使用。例如:[“^/iresty/(.)/(.)/(.*)”,”/$1-$2-$3”] 第一个元素代表匹配来自客户端请求的uri正则表达式,第二个元素代表匹配成功后转发到上游的uri模板。
hoststring可选转发到上游的新 host 地址,例如:iresty.com
headersobject可选转发到上游的新 headers,可以设置多个。头信息如果存在将重写,不存在则添加。想要删除某个 header 的话,把对应的值设置为空字符串即可。支持使用 Nginx 的变量,需要以 $ 开头,如 client_addr: $remote_addr :表示请求头 client_addr 为客户端IP。

如何启用

下面是一个示例,在指定的 route 上开启了 proxy-rewrite 插件:

  1. curl http://127.0.0.1:9080/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
  2. {
  3. "methods": ["GET"],
  4. "uri": "/test/index.html",
  5. "plugins": {
  6. "proxy-rewrite": {
  7. "uri": "/test/home.html",
  8. "scheme": "http",
  9. "host": "iresty.com",
  10. "headers": {
  11. "X-Api-Version": "v1",
  12. "X-Api-Engine": "apisix",
  13. "X-Api-useless": ""
  14. }
  15. }
  16. },
  17. "upstream": {
  18. "type": "roundrobin",
  19. "nodes": {
  20. "127.0.0.1:80": 1
  21. }
  22. }
  23. }'

测试插件

基于上述配置进行测试:

  1. curl -X GET http://127.0.0.1:9080/test/index.html

发送请求,查看上游服务 access.log,如果输出信息与配置一致:

  1. 127.0.0.1 - [26/Sep/2019:10:52:20 +0800] iresty.com GET /test/home.html HTTP/1.1 200 38 - curl/7.29.0 - 0.000 199 107

即表示 proxy-rewrite 插件生效了。

禁用插件

当你想去掉 proxy-rewrite 插件的时候,很简单,在插件的配置中把对应的 json 配置删除即可,无须重启服务,即刻生效:

  1. curl http://127.0.0.1:9080/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
  2. {
  3. "methods": ["GET"],
  4. "uri": "/test/index.html",
  5. "plugins": {},
  6. "upstream": {
  7. "type": "roundrobin",
  8. "nodes": {
  9. "127.0.0.1:80": 1
  10. }
  11. }
  12. }'

现在就已经移除了 proxy-rewrite 插件了。其他插件的开启和移除也是同样的方法。