如何设置Apache以使用此特定URL配置来提供SVN?

时间:2009-03-28 17:00:59

标签: svn apache path httpd.conf

我有一个VPS,我正在尝试托管几个SVN项目。我希望URL路径是这样的:

http://svn.domain.com -> Welcome HTML page (at /var/www/svn.domain.com/httpdocs/index.php)
http://svn.domain.com/project1 -> Project 1 SVN Root
http://svn.domain.com/project2 -> Project 2 SVN Root
http://svn.domain.com/project3 -> Project 3 SVN Root

但是,使用下面的代码,第一件事(欢迎HTML页面)没有显示,因为Location块优先于DocumentRoot。

将位置屏蔽设置为<Location /repos>有效,但我的网址变为http://svn.domain.com/repos/project1,我不喜欢。

有什么建议吗?

<VirtualHost *>
        ServerName svn.domain.com
        DocumentRoot /var/www/svn.domain.com/httpdocs
        <Location />
                DAV svn
                SVNParentPath /var/svn
                SVNIndexXSLT "/svnindex.xsl"

                AuthzSVNAccessFile /var/svn/access

                SVNListParentPath On
                # try anonymous access first, resort to real
                # authentication if necessary.
                Satisfy Any
                Require valid-user

                # how to authenticate a user
                AuthType Basic
                AuthName "Subversion repository"
                AuthUserFile /var/svn/passwd
        </Location>
</VirtualHost>

<Directory /var/svn>
        Allow from all
</Directory>

3 个答案:

答案 0 :(得分:1)

您可以使用 SVNPATH 指令,但是您必须设置三个位置(每个项目都需要自己的位置)

答案 1 :(得分:0)

通过为SVN存储库添加子域,每次添加新项目时都无需更改Apache配置即可解决此问题。你最终会得到这样的东西:

<VirtualHost *>
    ServerName svn.domain.com
    DocumentRoot /var/www/svn.domain.com/httpdocs
    <Location /svn>
            DAV svn
            SVNParentPath /var/svn
            SVNIndexXSLT "/svnindex.xsl"

            AuthzSVNAccessFile /var/svn/access

            SVNListParentPath On
            # try anonymous access first, resort to real
            # authentication if necessary.
            Satisfy Any
            Require valid-user

            # how to authenticate a user
            AuthType Basic
            AuthName "Subversion repository"
            AuthUserFile /var/svn/passwd
    </Location>

    <Directory /var/svn>
    Allow from all </Directory>

    <Directory /var/www/svn.domain.com/httpdocs>
      # Doc. root directives here</Directory>

然后,您必须使用http://svn.domain.com/svn/project1/形式的URL访问您的存储库,但如果您想添加project4等,您只需在/var/svn.//下添加新存储库。 p>

答案 2 :(得分:0)

mod_rewrite怎么样?您可以为非SVN内容(http://example.com/info/)设置一个文件夹,然后使用mod_rewrite将'/'或'/index.php'的请求重定向到'/info/index.php'。那会有用吗?