不要使用svn webdav启动apache服务

时间:2012-11-28 13:34:57

标签: linux ubuntu apache2 webdav

当我尝试使用svn和webDav启动apache服务时,我收到此错误消息:

Syntax error on line 120 of /etc/apache2/mods-enabled/dav_svn.conf:
Invalid command 'AuthUserFile', perhaps misspelled or defined by a module not included in the server configuration
Action 'configtest' failed.

第115-125行:

<Location /svn>
     DAV svn
     SVNParentPath /var/svn/teste
     SVNListParentPath On
     AuthType Basic
     AuthName "myproject subversion repository"
     AuthUserFile /etc/apache2/senhas
     <LimitExcept GET PROPFIND OPTIONS REPORT>
        Require valid-user
     </LimitExcept>
</Location>

我搜索mod_auth,但我找不到他。如何解决这个问题?

我使用ubuntu和apache2

1 个答案:

答案 0 :(得分:0)

确保已启用 authn_file apache模块。

要在Debian / Ubuntu服务器上执行此操作,您需要发出a2enmod authn_file然后重新启动apache。