Is it possible to do more than one comparison within an “if” in Nginx? For instance in a language like JAVA we use “if(comparison 1 || comparison 2)” and the || works as an “or”
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Using so many ‘if’ is bad practice and in most case means misunderstanding of nginx way configuration, the real power of nginx.
Writing such statement means you do not understand nginx ‘location’ directive. Location is already optimized for checking $request_uri againt expressions. It works faster and safer.
So your statement can be replaced with more proper location = / { }
if ($host ~* zencocoon.com) { set $test “${test}+zencocoon.com”; }
if ($http_cookie !~* "auth_token") {
set $test "${test}+no_auth_token";
}
if ($test = "root+zencocoon.com+no_auth_token") {
proxy_pass http://www.zencocoon.com;
break;
}
Can be rewritten with
map “$hostname:$http_cookie” $pass_to_proxy { default 0; “~*zencocoon.com:?!auth_token” 1; }
if ($pass_to_proxy) { proxy_pass http://www.zencocoon.com; break; }
It’s more short, safe, elegant and nginx-way.
You can also use something like:
if ($request_uri = /) {
set $test "root";
}
if ($host ~* zencocoon.com) {
set $test "${test}+zencocoon.com";
}
if ($http_cookie !~* "auth_token") {
set $test "${test}+no_auth_token";
}
if ($test = "root+zencocoon.com+no_auth_token") {
proxy_pass http://www.zencocoon.com;
break;
}
Taken from https://gist.github.com/jrom/1760790
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.