nginx proxy_pass ディレクティブが OSX で動作していますか?

nginx proxy_pass ディレクティブが OSX で動作していますか?

私の Mac には次の行がありますnginx.conf:

        location /addPat {
            resolver 8.8.8.8;
            proxy_pass http://some_url:8080$request_uri;
            proxy_http_version 1.1;
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection "upgrade";
    }

これは、同じネットワーク上で Debian を実行しているマシンから直接コピーされます。違いはありません。

しかし、このディレクティブは Linux ボックスでは完璧に機能しますが、Mac では常に 404 が返されます。ログ エントリは次のようになります。

2014/05/12 17:04:35 [error] 437#0: *13 "/usr/local/Cellar/nginx/1.4.6/html/addPat/index.html" is not found (2: No such file or directory), client: 127.0.0.1, server: localhost, request: "GET /addPat/ HTTP/1.1", host: "localhost"

すべてのプラットフォームで動作すると期待されるのに、一貫性がないように見えるため、これは非常に迷惑です。

ここで何が問題なのですか?

関連情報