Apache 手册中虚拟主机的示例

Apache 手册中虚拟主机的示例

我正在准备 Linux 考试,但我总是忘记 apache 虚拟主机的格式。在考试中,我可以使用服务器上的手册页和任何文档,但不允许我使用 Google。

CentOS 服务器上是否有提供虚拟主机示例的手册页或文档?

这样的我们:

<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot /var/www/html/linuxrocks.org/public_html
ServerName www. linuxrocks.org
ServerAlias www. linuxrocks.org linuxrocks.org
ErrorLog /var/www/html/linuxrocks.org/error.log
LogFormat "%v %l %u %t \"%r\" %>s %b" myvhost
CustomLog /var/www/html/linuxrocks.org/access.log
myvhost
</VirtualHost>

谢谢。

答案1

在 CentOS 7 上试试这个:

cat /usr/share/doc/httpd-{VERSION}/httpd-vhosts.conf

或者对于 CentOS 8:

cat /usr/share/doc/httpd/httpd-vhosts.conf

相关内容