nginx 重定向不正确
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在使用
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.