nginx.conf
我的 Mac 上有以下几行:
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"
这非常烦人,因为当你期望它可以在所有平台上运行时,它似乎不一致。
这里有什么问题?