Apache mod_jk 和虚拟主机

发布于 2024-12-14 11:34:37 字数 404 浏览 0 评论 0原文

我已经使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

山田美奈子 2024-12-21 11:34:37

我通过删除 DocumentRoot 行并添加以下行来使其工作:

JkMount / worker1
JkMount /* worker1

其中 worker1 是我在 mod_jk worker.properties 文件。

I made it work by removing the DocumentRoot line, and adding the following lines instead :

JkMount / worker1
JkMount /* worker1

with worker1 being the worker I had configured in mod_jk worker.properties file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文