我有一个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
在我的开发工作站(实际上包含在/etc/apache2/ apache.conf /andrew.conf)中,我有以下内容:
<Directory "/Users/andrew/Sites/">
Options Indexes MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<VirtualHost *:80>
DocumentRoot /Users/andrew/Sites/mysite/public
Server