beantalk中nginx的限流配置示例

example Rate limiting configuration of nginx in beanstalk

我试图在 nginx conf 中设置速率限制,我在 ./platform/nginx/conf.d/custom.conf 文件中做了以下操作

http {
    limit_req_zone $binary_remote_addr zone=one:10m rate=1r/s;
    server {
        location / {
            limit_req zone=one;
            limit_req_dry_run on;
        }
    }
}

但是它不起作用,我做错了什么?

我最终通过创建文件替换了完整的 nginx.conf .platform/nginx/conf.d/nginx.conf。它取代了 BeanStalk 的默认 nginx 设置。