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

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

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.
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