Serendipity96 commented on a change in pull request #691:
URL: https://github.com/apache/apisix-website/pull/691#discussion_r739971978



##########
File path: 
website/i18n/zh/docusaurus-plugin-content-blog/2021/11/02/weekly-report-1031.md
##########
@@ -0,0 +1,132 @@
+---
+title: "社区周报|10.15-10.31 功能亮点更新进行中"
+keywords: 
+- Apache APISIX
+- 社区周报
+- APISIX
+- API Gateway
+- 贡献者
+description: “独行者速,众行者远”。Apache APISIX 社区周报希望可以帮助社区小伙伴们更好地掌握 Apache APISIX 
社区的每周进展,方便大家参与到 Apache APISIX 社区中来。
+tags: [Events]
+---
+
+> 从 10.15 到 10.31, 有 31 位开发者为 Apache APISIX 提交了 93 个 commits。感谢这些小伙伴为 Apache 
APISIX 添砖加瓦,是你们的无私付出,让 Apache APISIX 项目变得更好!
+
+<!--truncate-->
+
+## 导语
+
+Apache APISIX 从开源第一天就以社区方式成长,迅速成为全世界最活跃的开源 API 网关项目。这些成就,离不开社区小伙伴们的共同奋斗。
+
+“独行者速,众行者远”。Apache APISIX 社区周报希望可以帮助社区小伙伴们更好地掌握 Apache APISIX 社区的每周进展,方便大家参与到 
Apache APISIX 社区中来。
+
+我们还整理了一些适合新来社区的小伙伴们参加的 issue!感兴趣的同学们,走过路过不要错过!
+
+## 贡献者统计
+
+![本周贡献者名单](https://static.apiseven.com/202108/1635733917405-d05ace3d-614a-4e82-bc6b-6a941a2d2281.png)
+
+![本周新晋贡献者](https://static.apiseven.com/202108/1635733917418-d6571655-be42-4819-a9bd-1440d69f4877.31)
+
+## Good first issue
+
+### Issue #686
+
+**链接**: https://github.com/apache/apisix-website/issues/686
+
+**问题描述**:为了加快 Apache APISIX 官网图片的加载速度,需要将所有图片迁移到CDN。
+
+### Issue #5305
+
+**链接**: https://github.com/apache/apisix/issues/5305
+
+**问题描述**:
+
+测试 APISIX 中的 proxy-mirror 插件时,发现这个插件的特性与 nginx 中的 ngx_http_mirror_module 不同。 
nginx 的镜像模块可以在 “proxy_pass” 指令中添加主机后面的 uri,例如:
+
+```
+location / {
+mirror /mirror;
+proxy_pass http://backend;
+}
+
+location = /mirror {
+internal;
+proxy_pass http://test_backend$request_uri;
+}
+```
+
+但是当我在 APISIX Dashboard 中测试 proxy-mirror 插件时,提示不能用 URI 填充空格。是否可以优化 proxy-mirror 
插件以支持 URI?
+
+![Issue 
Screenshot](https://static.apiseven.com/202108/1635734126653-8fe4c1e7-5b9a-4e78-b747-fb30cbae7f36.png)
+
+### Issue #5342
+
+**链接**: https://github.com/apache/apisix/issues/5342
+
+**问题描述**: 路由之间的限制计数器:需要在 lrucache 中指定路由对应的 limit-count 的 
key,这样同一个limit对象就可以在多个路由中共享。lrucache 的key(以下称为 group,以区别于limit 
key)目前是自动生成的,确保每个路由的 group 是独立的。对于这一变化,我们需要能够在 limit-count 中指定组:
+
+```
+"limit-count": {
+            "group": "group_id_blah"
+            "count": 2,
+            "time_window": 60,
+            "rejected_code": 503,
+            "key": "remote_addr"
+}
+```
+
+N注意,同一 group 的配置需要相同,目前需要调用者保证,否则 group 获得的限制对象将与配置不同。

Review comment:
       多了一个字母 N




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to