geo $remote_addr $geo {default 0;127.0.0.1 1;
}
geo $arg_ttlsa_com $geo {default 0;127.0.0.1 1;
}
如果该变量的值不能代表一个合法的IP地址,那么nginx将使用地址“255.255.255.255”。
geo $country {default ZZ;include conf/geo.conf;delete 127.0.0.0/16;proxy 192.168.100.0/24;proxy 2001:0db8::/32;127.0.0.0/24 US;127.0.0.1/32 RU;10.1.0.0/16 RU;192.168.1.0/24 UK;
}
vim conf/geo.conf
10.2.0.0/16 RU;
192.168.2.0/24 RU;
地址段例子:
geo $country {ranges;default ZZ;127.0.0.0-127.0.0.0 US;127.0.0.1-127.0.0.1 RU;127.0.0.1-127.0.0.255 US;10.1.0.0-10.1.255.255 RU;192.168.1.0-192.168.1.255 UK;
}
遵循最精确匹配原则,即nginx使用能最精确匹配客户端地址的值。
上面的例子几乎都是官网说明例子。下面举例说明便于理解该指令的用法。
完整的nginx.conf如下:
https://github.com/taoyunxing/github_test/blob/master/nginx.conf
http {geo $ttlsa_com {default 0;127.0.0.1 1;}server {listen 8080;server_name localhost;location /hello {default_type text/plain;echo $ttlsa_com;echo $arg_boy;}}
}
# curl 127.0.0.1:8081/hello?boy=默北
默北
2. 使用指定变量
http {geo $arg_boy $tao_com {default 0;127.0.0.1 1;8.8.8.8 2;}server {listen 8081;server_name localhost;location /hello2 {default_type text/plain;echo $tao_com;echo $arg_boy;}}
}
curl 127.0.0.1:8081/hello2?boy=8.8.8.8
http {geo $arg_boy $tao2_com {default 0;127.0.0.1/24 24;127.0.0.1/32 32;8.8.8.8 2;}server {listen 8081;server_name localhost;location /hello3 {default_type text/plain;echo $tao2_com;echo $arg_boy;}}
}
curl 127.0.0.1:8081/hello3?boy=127.0.0.1
http {include mime.types;default_type application/octet-stream;geo $arg_ip $address {ranges;default no; # note that ranges precedes all other directives.0.0.0-126.255.255.255 abroad|abroad;127.0.0.0-223.255.254.255 beijing|cmcc;}server {listen 80;server_name localhost;location /iptool {default_type text/plain;echo $address;}}
}
curl "http://127.0.0.1:8081/iptool?ip=144.144.144.144"
注意:geo指令主要是根据IP来对变量进行赋值的。因此geo块下只能定义IP或网络段,否则会报错“nginx: [emerg] invalid network”。
5.自定义常量
geo $dollar {default "$";}server {listen 8081;server_name localhost;location /test2 {echo "This is a dollar sign: $dollar";}}
curl -v 'http://localhost:8081/test2'
51 三菱PLC可读不可写Q:MT8102IQ和三菱Q系列PLC通讯,屏无法写入PLC,但是可以读取PLC的状态和数值?A:PLC程序中"允许RUN中写入"打钩,程序下载重启后解决。52 控制不了输入点Q:触摸屏做了三菱PLC的X点的元件,但是控制不了X输出?A:是的,PLC端X点无法通过触摸屏控制输出,屏上只能做X点的显示。53 M...
传统方法(仅适用于普通项目): 1、在vscode中安装 Live Server 插件: 2、安装成功后,vscode右下角会有 Go Live 标识点击: 3、cmd ipconfig 查询自己电脑的ip地址: 4、复制地址替换端口前的地址(http://127.0.0.1:8080修改为http://192.168....
uboot启动Linux内核过程分为4大步骤: 问题2: uboot阶段DDR的分区的问题 上述步骤2和步骤4中,有将uboot/kernel拷贝纸DDR的步骤,具体要拷贝到DDR的什么位置呢? 分清楚这两个概念: 链接地址:链接时指定的地址(指定方式为:Makefile中用-Ttext,或者链接脚本) 运行地址:程序实际运行...
在Linux系统中,以32bit x86系统来说,进程的4GB内存空间(虚拟地址空间)被划分成为两个部分 ------用户空间和内核空间,大小分别为0-3G,3-4G。 用户进程通常情况下,只能访问用户空间的虚拟地址,不能访问到内核空间。 每个进程的用户空间存放用户的程序和代码(堆栈,数据区,代码区等)...
/*注意:这个,后面的default可以改成auto、pointer等等,但是不能省略,否则就无法让自定义鼠标生效,具体为什么不要问我!*/html, body, * {cursor: url(//img.58cdn.com.cn/resource/xxzl/captcha/pencil.png), default; }...