阅读,有一部分是这样写的:
If no matching ServerName or ServerAlias is found in the set of virtual hosts containing the most specific matching IP address and port combination, then the first listed virtual host that matches that will be used.
我有一个包含许多虚拟主机域的vhost文件。问题是,当我键入服务器IP时,我应该转到root,但不是,正如apache文档所述,我被带到了第
我有一个SVN服务器,具有类似于https://svn-server.example.com/的URL。
我想在那台服务器上托管一些非DAV页面。
由于SSL和存储库的不同URL将需要重新定位所有工作副本(我无法访问这些副本),因此无法使用不同的主机,因此我试图为普通页面设置特定的路径:
<Location /review-board/>
DAV off
</Location>
我发现我显然无法做到这一点,因为这是被明确拒绝的-他们甚至有一个错误信息:"DAV Off" cannot be used to turn off a subtree o
我在我的Apache2中定义了两个站点。每个服务器都有一个服务器名。
例如:
Server 1 (first in sites-enabled) responds to www.example.com
Server 2 (second in sites-enabled) responds to www.example2.com
好的,问题是当我在URL中输入服务器IP时,第一个服务器就会响应。
如何将响应限制为仅指定其servername?我想阻止IP呼叫。
如果不可能,我希望第二台服务器响应,而不是第一台服务器。我不能更改顺序,因为在第二个服务器中定义了将覆盖第一个服务器配置的别名。