Complete the code to set the burst limit in the rate limiting configuration.
limit_req_zone $binary_remote_addr zone=mylimit:10m rate=1r/s; limit_req zone=mylimit burst=[1];
The burst option sets how many requests can exceed the rate limit temporarily. Here, 5 means up to 5 extra requests can burst.
Complete the code to enable the nodelay option in the limit_req directive.
limit_req zone=mylimit burst=5 [1];
The nodelay option makes requests exceeding the rate limit and burst limit processed immediately without delay.
Fix the error in the limit_req directive to correctly apply burst and nodelay options.
limit_req zone=mylimit burst=[1] nodelay;The burst value must be a number, not a word. '5' is correct, 'five' or 'ten' are invalid.
Fill both blanks to configure a limit_req with burst and nodelay options correctly.
limit_req zone=mylimit burst=[1] [2];
Use 5 for burst and nodelay to process excess requests immediately.
Fill all three blanks to create a limit_req_zone and limit_req with burst and nodelay options.
limit_req_zone $binary_remote_addr zone=mylimit:10m rate=[1]; limit_req zone=mylimit burst=[2] [3];
The rate is set to 1r/s, burst to 5, and nodelay enables immediate processing of bursts.