Apache mod_jk 和虚拟主机
我已经使用 mod_jk 配置了 apache,以将 /taste
上下文重定向到我的应用程序服务器。现在我想创建一个虚拟主机,以便我的域名重定向到这个上下文。
我在httpd.conf中尝试了以下配置:
NameVirtualHost *:80
<VirtualHost *:80>
ServerName www.suitmytaste.com
ServerAlias suitmytaste.com *.suitmytaste.com
DocumentRoot /taste
</VirtualHost>
但是apache不接受/taste部分作为DocumentRoot。如何配置它以便将虚拟主机重定向到 mod_jk 连接器?
I have configured apache with mod_jk, to redirect the /taste
context to my application server. Now I would like to create a virtual host, so that my domain name redirects to this context.
I tried the following configuration in httpd.conf :
NameVirtualHost *:80
<VirtualHost *:80>
ServerName www.suitmytaste.com
ServerAlias suitmytaste.com *.suitmytaste.com
DocumentRoot /taste
</VirtualHost>
But apache does not accept the /taste part as a DocumentRoot. How can I configure it so it redirects the virtual host to the mod_jk connector?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过删除
DocumentRoot
行并添加以下行来使其工作:其中
worker1
是我在 mod_jkworker.properties
文件。I made it work by removing the
DocumentRoot
line, and adding the following lines instead :with
worker1
being the worker I had configured in mod_jkworker.properties
file.