Apache mod_jk和虚拟主机

时间:2011-11-08 19:34:58

标签: virtualhost 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连接器?

1 个答案:

答案 0 :(得分:0)

我通过删除DocumentRoot行并添加以下行来实现它的工作:

JkMount / worker1
JkMount /* worker1

worker1是我在mod_jk worker.properties文件中配置的工作人员。