Nginx implementation of If multiple-judgment configuration Method Example _nginx

Source: Internet
Author: User

The Nginx configuration does not support the logic and/or operation of the IF condition, and does not support the nested syntax of if, we can implement it in a variable way:
The first is pseudocode (that is, not supported by Nginx), written here only for ease of understanding:

Copy Code code as follows:

if ($remote _addr ~ "^ (12.34|56.78)" && $http _user_agent ~* "Spider") {
return 403;
}

Below this is equivalent and the actual available configuration
Copy Code code as follows:

Set $flag 0;
if ($remote _addr ~ "^ (12.34|56.78)") {
Set $flag "${flag}1";
}
if ($http _user_agent ~* "Spider") {
Set $flag "${flag}2";
}
if ($flag = "012") {
return 403;
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.