NGINX $http_user_agent が 404 応答を引き起こす

NGINX $http_user_agent が 404 応答を引き起こす

次の条件では、ユーザーエージェントがサブ文字列「MSIE 8」と一致すると 404 リダイレクトが発生しますか?

 #Begin IE8 Hack
 if ($http_user_agent ~* 'MSIE 8') {
     #set $hack "I";
 }
 #End IE8 Hack

コメントアウトすると、if ($http_user_agent...404 リダイレクトが停止します。

何が起きてる?

カールリクエスト

カール -XGET 'https://localhost/ より[メールアドレス]' -v -A'Mozilla/4.0 (互換; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; MDDSJS)'

環境

  • NGINX 1.6.2 について
  • Linux Debian 7 3.2.0-4-amd64

完全な構成

server {

listen 80 default_server;

root /var/www/frontend;

#Begin IE8 Hack
error_page               418 = @PATCH;
location @PATCH {
  proxy_method          PATCH;
  proxy_pass            http://0.0.0.0:3001;
  proxy_redirect        default;
}
#End IE8 Hack

location / {
  #Begin IE8 Hack
  if ($http_user_agent ~* 'MSIE 8') {
    #set $hack "I";
  }
  #if ($request_method = PUT) {
  #   set $hack "${hack}E";
  #}
  #if ($hack = IE) {
  #   return 418;
  #}
  #End IE8 Hack

  proxy_pass            http://0.0.0.0:3001/v1/;
  proxy_redirect        default;
 }
}

関連情報