Report this

What is the reason for this report?

conditional within an "if" in Nginx

Posted on December 17, 2014

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!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Using so many ‘if’ is bad practice and in most case means misunderstanding of nginx way configuration, the real power of nginx.

  1. Regarding if ($request_uri = /) {}

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 = / { }

  1. Regarding other ‘if’ - in most cases it can be reduced with nginx ‘map’. This statement:

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

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.