0

我的服务器是:

centos 7 中的 Webmin Virtualmin Apache VPS。

我在 webmin 中已经有 5 个不同的 IP 地址。

而且我已经在 Virtualmin 中创建了一个虚拟服务器。

我需要将所有 5 个 IP 地址连接到这个虚拟服务器。

虚拟服务器必须接受所有域:必须是所有 IP 地址的默认端点(域)。

我怎样才能做到这一点。

4

1 回答 1

2

由于您希望同一 VirtualHost 上的所有地址,请执行以下操作:

# Listen on all interfaces
Listen 80

# Default VH (first one in the configuration), for all connections on port 80
<VirtualHost *:80>
    # Main domain
    ServerName www.example.com
    # Other domains, list all valid here
    ServerAlias example.com

    [... OTHER CONFIGURATION ...]

</VirtualHost>

如果请求的域与ServerNameor中的任何匹配ServerAlias,它将使用该 VirtualHost。如果请求的域与任何其他 VirtualHost 定义不匹配,如果它是配置中的第一个定义(即,它是默认值),则仍将使用该域。

于 2018-10-29T15:16:39.350 回答