Results 145 comments of Qi

https://docs.konghq.com/gateway/changelog/#3600 > In OpenSSL 3.2, the default SSL/TLS security level has been changed from 1 to 2. This means the security level is set to 112 bits of security. As...

@1473371932 The docker image `kong/kong-gateway:3.4.3.8` is the enterprise version of the Kong Gateway, the community version doesn't check the enterprise license. You can check out the community version from https://hub.docker.com/_/kong/.

@chronolaw Could you please take a look?

> [![CLA assistant check](https://camo.githubusercontent.com/fbf2b4a56b8f8dacb3fb4f7f3cf7877b8c27f9cfee8546ff24c8df94facca0f6/68747470733a2f2f636c612d617373697374616e742e696f2f70756c6c2f62616467652f6e6f745f7369676e6564)](https://cla-assistant.io/Kong/kong?pullRequest=13098) Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our [Contributor License Agreement](https://cla-assistant.io/Kong/kong?pullRequest=13098) before we can...

> > And also I suggest not rebase commits when applying reviewing suggestions, we can use the following command for better view for the reviewer. > > ```shell > >...

这个需求比较模糊,可能需要更明确的封禁触发逻辑,比如: * 定义何为恶意扫描和攻击。 * 定义什么是长期。 * 定义自动封禁的时长,以及对应网段是否一同封禁。

> > 这个需求比较模糊,可能需要更明确的封禁触发逻辑,比如: > > > > * 定义何为恶意扫描和攻击。 > > * 定义什么是长期。 > > * 定义自动封禁的时长,以及对应网段是否一同封禁。 > > 比如很多爬虫喜欢扫描目录和.php,这种有枣没枣打一杆子的行为非常讨厌,日志里全是404响应。 自动封禁措施就是比如1h内遭到同一ip超过5次404的访问,就封他ip 72小时。 这类逻辑比较灵活,有点像是定制功能,每个人的需求都可能有些许不同,感觉难以用简单的功能覆盖这类逻辑。

Hi @bitcapybara , I'm trying to understand your use case. ```rust async fn do_something(rx: flume::Receiver, cancel: &CancellationToken) { ``` I noticed your `do_something` function receives `&CancellationToken` instead of an owned...