我有两个在我的 VPS 上独立运行的站点,我们将它们称为 site1 和 site2。
它们分别位于/var/www/html/site1
和/var/www/html/site2
我还没有域名,但我可以使用服务器 IP 访问我的网站,假设它的地址是8.8.8.8
我目前为每个站点设置了两个单独的 apache 配置文件。
两个站点的配置如下,只有DocumentRoot
第二个Directory
块不同。
<VirtualHost *:80>
ServerName 8.8.8.8
DocumentRoot /var/www/html/site
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /var/www/html/site>
AllowOverride All
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
我可以通过启用一个网站并禁用另一个网站来访问我的网站。
我想要做的是让 site1 开启http://8.8.8.8并测试网站http://site2.8.8.8.8
我尝试了以下配置,但没有成功
<VirtualHost *:80>
ServerName 8.8.8.8
DocumentRoot /var/www/html/site1
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /var/www/html/site1>
AllowOverride All
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
<VirtualHost *:80>
ServerName site2.8.8.8.8
DocumentRoot /var/www/html/site2
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /var/www/html/site2>
AllowOverride All
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
我需要 DNS 记录才能实现我的目标吗?
如果不是,我应该如何配置 apache 和我的 VPS,以便根据 IP 前缀正确地使用 sit1 或 site2 重定向?
答案1
基于名称的虚拟主机使用您的 Web 浏览器作为 HTTP 请求的一部分发送的主机名来识别将使用哪个虚拟主机来回答请求。
通常,您需要为此设置 DNS,并将和指向site1.example.com
您site2.example.com
的 Web 服务器的 IP 地址。
对于单个用户/开发人员,您可以通过将这两个主机名添加到hosts 文件您的工作站。
如果你有多个可用的 IP 地址(在 IPv4 世界中现在很少见,但在 IPv6 中很常见),你可以将每个 Apache VirtualHost 条目绑定到不同的 IP 地址,并且不需要 DNS 或 hosts 文件来提供不同的内容,只需访问正确的 IP 地址即可
https://httpd.apache.org/docs/current/vhosts/name-based.html#namevip