Search code examples
nginxamazon-elastic-beanstalkrate-limiting

example Rate limiting configuration of nginx in beanstalk


I am trying to put rate limiting in nginx conf, I did the following in ./platform/nginx/conf.d/custom.conf file

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

But it does not work, what am i doing wrong?


Solution

  • I ended up replacing the complete nginx.conf by creating a file .platform/nginx/conf.d/nginx.conf . It replaces the default nginx setup of BeanStalk.