nginx location带@

发布时间 2023-06-06 19:39:31作者: liwenchao1995

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;
    }