微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

部署http访问SVN模式出现403问题

部署http访问SVN模式到阿里云服务器

参考连接地址 https://help.aliyun.com/document_detail/52864.html

设置好账号进行访问 http://ip/svn/svnrepo 输入账号页面出现

Forbidden

You don't have permission to access /svn/svnrepo on this server.

查看目录/var/log/httpd  访问的错误日志文件 error.log

[Mon Jun 10 19:32:34.744772 2019] [authz_svn:error] [pid 5005] [client 219.137.67.61:56612] Access denied: 'admin' GET svnrepo:/

确认配置的账号没有问题,猜测是配置的权限问题

查看/var/svn/authz 还是初始化状态,添加

[/]         
admin = rw
页面出现:

  svnrepo - Revision 0: /

问题解决
### This file is an example authorization file for svnserve.
### Its format is identical to that of mod_authz_svn authorization
### files.
### As shown below each section defines authorizations for the path and
### (optional) repository specified by the section name.
### The authorizations follow. An authorization line can refer to:
###  - a single user,
###  - a group of users defined in a special [groups] section,
###  - an alias defined in a special [aliases] section,
###  - all authenticated users, using the '$authenticated' token,
###  - only anonymous users, using the '$anonymous' token,
###  - anyone, using the '*' wildcard.
###
### A match can be inverted by prefixing the rule with '~'. Rules can
### grant read ('r') access, read-write ('rw') access, or no access
### ('').

[aliases]
# joe = /C=XZ/ST=Dessert/L=Snake City/O=Snake Oil, Ltd./OU=Research Institute/CN=Joe Average

[groups]
# harry_and_sally = harry,sally
# harry_sally_and_joe = harry,sally,&joe

# [/foo/bar]
# harry = rw
# &joe = r
# * =

# [repository:/baz/fuz]
# @harry_and_sally = rw
# * = r
[/]         
admin = rw

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐