如何在切诺基中重定向端口?
我已经安装了 cherokee,并且非常满意。但现在我想知道如何重定向端口。我想根据主机名将端口 80 重定向到其他端口,如下所示:
请求 http://a.mysite.com
到 http://mysite.com:< b>8000
向 http://mysite.com:9000
请求 http://b.mysite.com
,
感谢所有帮助。
多谢!
I've installed cherokee and am very happy with it. But now I'm wondering how I can redirect ports. I'd like to redirect port 80 to other ports based on the hostname, as follows:
Request for http://a.mysite.com
to http://mysite.com:8000
Request for http://b.mysite.com
to http://mysite.com:9000
All help is appreciated.
Thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的!我自己发现了! :)
要将
http://a.mysite.com
重定向到http://mysite.com:8000
,请在 cherokee 中执行以下步骤管理Web环境:首先创建一个名为
a.mysite.com
的虚拟服务器,并为其指定一个文档根目录,例如/var/www/a
。然后链接到源选项卡并通过单击“加号”图标创建新的信息源。输入
a.mysite.com
作为昵称,输入mysite:8000
作为连接。返回虚拟服务器选项卡。确保选择
a.mysite.com
服务器后,检查主机匹配方法是否设置为“匹配昵称”。在行为选项卡中选择“默认”目录,然后在处理程序选项卡中从处理程序下拉列表中选择“HTTP 反向代理”。然后在后端服务器部分选择“循环”作为平衡器。
在“分配信息源”部分中,选择
a.mysite.com
作为应用程序服务器。然后保存并重新启动 Cherokee。
您可以对
b.mysite.com
执行相同的过程。或者,当您的网站变得更受欢迎时,您可以向
a.mysite.com
添加更多应用程序服务器。Good! Found out myself! :)
To redirect
http://a.mysite.com
tohttp://mysite.com:8000
follow these steps in the cherokee admin web environment:First create a virtual server with name
a.mysite.com
and give it a document root, e.g./var/www/a
.Then link to the sources tab and create a new information source by clicking the 'plus' icon. Enter
a.mysite.com
as nick andmysite:8000
as connection.Go back to the vServers tab. After making sure that the
a.mysite.com
server is selected check that the host match method is set to 'match nickname'.In the behaviour tab select the 'default' directory and in the handler tab select 'HTTP Reverse Proxy' from the handler dropdown list. Then select 'Round Robin' as balancer in the Back-end Server section.
In the section Assign Information Sources section select
a.mysite.com
as application server.Then save and restart Cherokee.
You can preform the same process for
b.mysite.com
.Or, when your site becomes more popular, you can add more application servers to
a.mysite.com
.