Syntax: | break; |
---|---|
Default: | — |
Context: | server , location , if |
Stops processing the current set of ngx_http_rewrite_module
directives.
If a directive is specified inside the location, further processing of the request continues in this location.
Example:
if ($slow) { limit_rate 10k; break; }
Please login to continue.