目录
nginx location带@
我想访问
https://dev-das.aaa.com/@config 和
https://dev-das.aaa.com/config 的时候都能跳转到后端
location ~* /@?config {
proxy_redirect off;
set $Real $proxy_add_x_forwarded_for;
if ( $Real ~ (\d+)\.(\d+)\.(\d+)\.(\d+),(.*) ){
set $Real $1.$2.$3.$4;
}
proxy_set_header X-Real-IP $Real;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_set_header Connection "";
proxy_http_version 1.1;
proxy_buffering off;
rewrite ^/@?config/?(.*)$ /$1 break;
proxy_pass http://213.114.133.74:21111;
}
标签:Real,set,header,nginx,location,config,proxy
From: https://www.cnblogs.com/liwenchao1995/p/17461528.html