Welcome! Log In Create A New Profile

Advanced

Does this configuration have impact in performance?

nfn
December 02, 2011 05:24AM
Hello,

I have two small bits in my configuration that I'm worried about.
One it to redirect users based in their country to a specific page.
The other is to choose the upstream based in a cookie.

'm am worried about performance and would like to know if this small bits are evil to my site.

================================
### Map Member ID Cookie

map $cookie_memberid $prxy {
default upstream-1;
~^[1-9]\d*$ upstream-2;
}
### / Map Member ID Cookie

### Map Country Code
map "$geoip_country_code.$arg_section" $registo {
default 0;
AAA.register 1;
BBB.register 1;
}

map "$geoip_country_code.$arg_serviceClick" $registo {
default 0;
AAA.facebook 1;
BBB.facebook 1;
}
### / Map Country Code

server {

# Main location
location / {

# GeoIP
if ($registo) {
return 301 /pages/registo;
}

proxy_pass http://$prxy;
}
==============================

Thanks
Subject Author Posted

Does this configuration have impact in performance?

nfn December 02, 2011 05:24AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 91
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready