nginx配置测试正则获取对应的值
访问会以下载文件的方式将获取到的值保存在文件中
upstream docker_2 { server 10.17.172.244:8080; } server { listen 81; server_name localhost; access_log /var/log/nginx/mytest_acc.log; error_log /var/log/nginx/mytest_error.log; location ^~/ { if ($args ~* "(.*)sid=(\d+)(.*)$") { set $id $2; } echo $id; } }
一些事情一直在干,说不定以后就结果了呢
本文来自博客园,作者:chenjianwen,转载请注明原文链接:https://www.cnblogs.com/chenjw-note/p/14388290.html