-1

我有这个域:

站点 1:/var/www/porttail1

有了这个配置:

/etc/httpd/conf.d

我想要做的是将此域添加到同一台服务器:

站点 2:/var/www/porttail2

但我在这里的问题是站点 1 默认调用 conf.d,我需要站点 2 的第二个 conf.d,所以我如何告诉站点 2 搜索他的 conf(例如 /etc/httpd/conf2 .d)?

4

2 回答 2

1

您可以在单个服务器中创建多个虚拟主机。以虚拟主机示例为例。

于 2013-05-14T12:40:44.607 回答
0

默认情况下,您的主要 apache 配置中应该有 Include 指令:httpd.conf 或 apache2.conf。

在我的 ubuntu apache2.conf 中,是这样的:

# Include generic snippets of statements
Include conf.d/

# Include the virtual host configurations:
Include sites-enabled/

因此,如果您在 conf.d/ 或 sites-enabled/ 中添加另一个 conf 文件,那么它将在启动期间自动包含并由 apache 读取。

于 2013-05-14T13:38:25.297 回答