nginx 重定向不正确

发布于 2024-12-21 14:41:10 字数 285 浏览 0 评论 0原文

我使用 nginx 作为我的杂种的前端。而mongrel正在监听3001,nginx正在监听3000。

在我的应用程序中,创建模型后会有一个重定向。假设我向 http://xxxx:3000/users 发布了一个请求,它应该重定向到 http://xxxx:3000/users/1, ( 1是新用户的id),但实际上,它被重定向到http://xxxx/users/1,从而导致404错误。

为什么3000端口不见了?

I'm using nginx as the front end of my mongrel. And mongrel is listening on 3001, and nginx is listening on 3000.

In my application, there will be a redirection after creating a model. let's say, I post a request to http://xxxx:3000/users, it should be redirect to http://xxxx:3000/users/1, (1 is the id of the new user), but actually, it was redirected to http://xxxx/users/1, which cause a 404 error.

Why the port 3000 is missing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傲娇萝莉攻 2024-12-28 14:41:10

您正在使用 proxy_pass 吗?您应该添加这一行:
proxy_set_header Host $host:3000;

您需要将 nginx 配置放在这里。

====

更好的解决方案:

proxy_set_header Host $http_host;

$host 不包含端口,而 $http_host 是 http header 中的值,它是浏览器添加的。

Are you using proxy_pass ? You should add this line:
proxy_set_header Host $host:3000;

You need put your nginx config up here.

====

better solution:

proxy_set_header Host $http_host;

$host not include port, and $http_host is the value from http header, it is added by browser.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文