nginx gibt 405 zurück, wenn einem Standortblock ein leeres „if“ hinzugefügt wird

nginx gibt 405 zurück, wenn einem Standortblock ein leeres „if“ hinzugefügt wird

Angenommen, wir haben die folgende Konfiguration ( $branchist vor diesem Snippet festgelegt, hat aber vermutlich keinen Bezug dazu):

# If the request origin ends in .domain.com
set $allowed_origin "";
if ($http_origin ~* ^(.+\.)?domain\.com$) {
  set $allowed_origin $http_origin;
}

add_header Access-Control-Allow-Origin "$allowed_origin" always;
add_header Access-Control-Allow-Credentials "true" always;
add_header Access-Control-Allow-Headers "Accept, Authorization, Content-Type, Cookie, Some-Custom-Header, Another-Custom-Header, X-And-Another-One" always;
add_header Access-Control-Allow-Methods "GET, POST, OPTIONS" always;

root /var/path/www/$branch/www;
index index.php index.html;
error_page 404 = /notfound.php;

location ~ ^/v\d+/ {
  root /var/path/www/$branch/www;
  try_files $uri_lower $uri_lower/ /some.php?$query_string;
}

location / {
  root /var/path/www/$branch/www;
  try_files $uri_lower $uri_lower/ =404;
}

location ~ \.php$ {
  try_files $uri_lower $uri_lower/ $uri $uri/ =404;
  include fastcgi-params;
}

Dies funktioniert einwandfrei (gibt 200 zurück) für die folgende Anfrage:

OPTIONS https://some.domain.com/v1/graphql HTTP/1.1
Host: some.domain.com
Origin: https://another.domain.com

Wenn ich jedoch einfach ein leeres if(keine add_headerÄnderungen, nur ein leeres if) in das erste einfüge location, entsteht Folgendes:

location ~ ^/v\d+/ {
  if ($http_origin ~* ^(.+\.)?domain\.com$) {
  }
  root /var/path/www/$branch/www;
  try_files $uri_lower $uri_lower/ /some.php?$query_string;
}

Es beginnt zu reagieren mit

HTTP/1.1 405 Not Allowed

Weiß jemand, warum und wie ich hier eine if-Bedingung hinzufügen kann? Möglicherweise möchte ich darin Header manipulieren, wenn ich nur einen bestimmten CORS für den zulässigen Ursprung einstelle.

verwandte Informationen