如何设定特定 IP 的虚拟主机?

如何设定特定 IP 的虚拟主机?

以下是我当前的sites-available.conf:

<VirtualHost *:80>
    ServerAdmin heuyie@localhost
    DocumentRoot /var/www/html/wordpress
    ServerName heuyie.com
    ServerAlias www.heuyie.com
    <Directory /var/www/html/wordpress>
      Options FollowSymLinks
      AllowOverride All
    </Directory>
    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

我想在此服务器上托管另一个域,因此我想为该虚拟主机指定 IP。因此,我重写了第一行,如下所示:

<VirtualHost 172.20.30.40:80>

然后,一切都停止了。为什么?顺便说一句,目前这是该服务器上唯一的域名。谢谢!

答案1

需要添加

收听 172.20.30.40:80

相关内容