2

我希望能够构建一个脚本来显示在我的 Apache (Ubuntu) 开发机器下运行的所有虚拟主机。

迄今为止,我还没有找到任何示例或任何接近我想要的东西,这就是:

“显示在这台机器上运行的所有虚拟主机”。(服务器名称、别名等)。

我在想我可能能够读取 /etc/apache2/sites-available 文件夹,其中包含虚拟主机的所有 conf 文件,但在走这条路之前,我想我先在这里问一下。

4

1 回答 1

4

您可以使用apachectl(或apache2ctl)命令向httpdApache 服务器发送信号以转储虚拟主机信息:

 apache2ctl -St

以下是使用apachectl发送信号和httpd 标志的链接。

这是我的 Apache / Ubuntu 系统上的样子(我是一个拥有一堆虚拟主机的 Web 开发人员):

VirtualHost configuration:
wildcard NameVirtualHosts and _default_ servers:
*:80                   is a NameVirtualHost
         default server 127.0.1.1 (/etc/apache2/sites-enabled/000-default:1)
         port 80 namevhost 127.0.1.1 (/etc/apache2/sites-enabled/000-default:1)
         port 80 namevhost adaleco (/etc/apache2/sites-enabled/adaleco:1)
         port 80 namevhost amcham (/etc/apache2/sites-enabled/amcham:1)
         port 80 namevhost cake (/etc/apache2/sites-enabled/cake:1)
         port 80 namevhost cakeplate (/etc/apache2/sites-enabled/cakeplate:1)
         port 80 namevhost coord (/etc/apache2/sites-enabled/coord:1)
         port 80 namevhost dru1 (/etc/apache2/sites-enabled/dru1:1)
         port 80 namevhost flaming (/etc/apache2/sites-enabled/flaming:1)
         port 80 namevhost flaming6 (/etc/apache2/sites-enabled/flaming6:1)
         port 80 namevhost food (/etc/apache2/sites-enabled/food:1)
         port 80 namevhost fun (/etc/apache2/sites-enabled/fun:1)
         port 80 namevhost marc (/etc/apache2/sites-enabled/marc:1)
         port 80 namevhost sugar (/etc/apache2/sites-enabled/sugar:1)
         port 80 namevhost vol (/etc/apache2/sites-enabled/vol:1)
         port 80 namevhost xmas (/etc/apache2/sites-enabled/xmas:1)
Syntax OK
于 2013-03-26T20:57:15.600 回答