带乘客的虚拟主机
Rails 应用程序已经在使用 Apache+Passenger 的 mydomain.com 上正常工作。此外,我将在 blog.mydomain.com 上部署非 Rails 应用程序(wordpress)。所以我像这样修改了 httpd.conf
PassengerEnabled off
<VirtualHost *:80>
ServerName mydomain.com
DocumentRoot /var/www/railsapp/public
PassengerEnabled on
</VirtualHost>
<VirtualHost *:80>
ServerName blog.mydomain.com
DocumentRoot /var/www/blog
</VirtualHost>
但这不起作用。 blog.mydomain.com 还显示 Rails 应用程序。我该如何划分它们?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将其添加到 conf 文件的顶部:
您也可以尝试交换顺序,以便更具体的放在第一个,但请查看 此页面。它表明对于较旧的 http/1.0 客户端,您可能没有足够的信息来正确路由它。
Try adding this to the top of the conf file:
You might also try swapping the order so the more specific one is first, but look at the section called 'Using the ServerPath Directive' on this page. It indicates that with older http/1.0 clients, you may not have enough information to route it correctly.