我的 Rails 应用程序有问题。
该应用程序的 API 正在本地主机的 8082 端口上查找我的论坛 (forum.example.com)。
我需要创建一个路由,将每个连接重定向到 forum.example.com 上的 127.0.0.1:8082
是否可以使用 nginx 获得类似的东西?
答案1
我会用代理密码为了这。
在 nginx 中,创建一个监听端口的虚拟主机8082
,localhost
然后将其代理到forum.example.com
。
像这样:
server {
listen 8082;
server_name 127.0.0.1;
location / {
proxy_pass http://forum.example.com;
}
}