In nginx, in geo module it has the following example http://nginx.org/en/docs/http/ngx_http_geo_module.html I am wondering what is this 0,2,1,1 numbers etc.. stated after the main addresses (values). what are the usage of them?
> geo $geo {
> default 0;
>
> 127.0.0.1 2;
> 192.168.1.0/24 1;
> 10.1.0.0/16 1;
>
> ::1 2;
> 2001:0db8::/32 1;
>}