停止 nginx 处理进一步的规则

停止 nginx 处理进一步的规则

我正在使用 nginx 将目录代理到远程服务器,代码如下:

location /directory/ {
    proxy_set_header   X-Real-IP $remote_addr;
    proxy_set_header   Host      sub.domain.io;
    proxy_pass         http://sub.domain.io:80/;
}

然而,此后由于我制定的其他规则,各种静态文件(例如 CSS)都崩溃了。

有没有办法在与此目录匹配后结束处理?以同样的方式,您可以使用 last 进行重写。

完整配置如下:

root /var/www/site;
autoindex off;
index index.php;
charset utf-8;
log_not_found off;
access_log /var/www/site/data/logs/access.log;
error_log /var/www/site/data/logs/error.log;

add_header X-debug-message "$geoip_country_code" always;

location ~ \.php$
{
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/run/php/php7.2-fpm.sock;
}

location ~ "^/(de|es|fr)*$" {
    set $lang "$1/";
    set $page 'homepage';
    if ($http_accept_encoding !~ gzip) {
        rewrite ^/(.*)$ /index.php?request=/ last;
    }
    try_files /data/cache/html/$lang$page.html.gz @php;
    add_header  Content-Encoding  gzip;
    gzip off;
    default_type text/html;
}

location /directory/ {
    proxy_set_header   X-Real-IP $remote_addr;
    proxy_set_header   Host      sub.domain.io;
    proxy_pass         http://sub.domain.io:80/;
}

if ($allowed_country = no) {
    return 444;
}

location /
{
    try_files $uri @main_cache;
}

location @main_cache {
    if ($http_accept_encoding !~ gzip) {
        rewrite ^/(.*)$ /index.php?request=$1 last;
    }
    if ( $query_string ) {
            rewrite ^/(.*)$ /index.php?request=$1 last;
    }
    try_files /data/cache/html$uri.html.gz @php;
    add_header  Content-Encoding  gzip;
    gzip off;
    default_type text/html;
}

location @php {
    rewrite ^/(.+)$ /index.php?request=$1 last;
}

location /data/cache/pred
{
    try_files $uri $uri/ =404;
    if ( !-e $request_filename )
   {
            rewrite /cache/ps/(.*)$ /index.php?request=get&pin=$1 last;
            break;
    }
}

location ~* \.(eot|ico|jpe?g|png|svg|ttf|woff|woff2)$
{
        gzip_static on;
        gzip_vary on;
        expires 30d;
        add_header Cache-Control "public";
}

location ~* \.(css|js)$
{
        gzip_static on;
        gzip_vary on;
        expires 7d;
        add_header Cache-Control "public";
}


location ~ ^/(src|cron|tpl)
{
        return 301 $scheme://$server_name;
}

请求最终在源服务器上显示 404。只有倒数第二块中列出的文件格式才会出现这种情况。

答案1

答案就在nginx 位置指令文档

适合您情况的简短版本:

nginx/directory在处理 URL 时首先将其视为候选。它会记住此匹配,然后尝试查找正则表达式匹配。

如果找到合适的正则表达式location,nginx 将应用该位置规则。如果没有找到匹配项,nginx 将使用记住的/directory位置。

在您的例子中,正则表达式块匹配 中的某些 URI /directory。当您想阻止它时,可以使用以下块:

location ^~ /directory/ {
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header Host sub.example.com;
    proxy_pass http://sub.example.com:80/;
}

相关内容