惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

P
Privacy International News Feed
Hacker News - Newest:
Hacker News - Newest: "LLM"
Application and Cybersecurity Blog
Application and Cybersecurity Blog
N
News and Events Feed by Topic
Hacker News: Ask HN
Hacker News: Ask HN
V2EX - 技术
V2EX - 技术
L
LINUX DO - 最新话题
Google Online Security Blog
Google Online Security Blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Stack Overflow Blog
Stack Overflow Blog
Recent Commits to openclaw:main
Recent Commits to openclaw:main
P
Proofpoint News Feed
A
Arctic Wolf
Forbes - Security
Forbes - Security
Spread Privacy
Spread Privacy
Security Latest
Security Latest
C
CXSECURITY Database RSS Feed - CXSecurity.com
C
CERT Recently Published Vulnerability Notes
Latest news
Latest news
AWS News Blog
AWS News Blog
M
MIT News - Artificial intelligence
GbyAI
GbyAI
V
Visual Studio Blog
T
The Blog of Author Tim Ferriss
有赞技术团队
有赞技术团队
Help Net Security
Help Net Security
博客园 - Franky
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
S
Schneier on Security
S
SegmentFault 最新的问题
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
PCI Perspectives
PCI Perspectives
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Palo Alto Networks Blog
SecWiki News
SecWiki News
TaoSecurity Blog
TaoSecurity Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
K
Kaspersky official blog
G
Google Developers Blog
H
Hacker News: Front Page
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏
博客园 - 叶小钗
T
Troy Hunt's Blog
F
Full Disclosure
T
Threat Research - Cisco Blogs

博客园 - 城

使用WebClient进行上传文件 序列化成字符串 - 城 - 博客园 东北话 c# MD5加密 Visual Studio .NET has detected Web server is not running ASP.NET 1.1(vs.2003) Unable to generate a temporary class (result=1).error CS2001: Source file '...... VS.net 2005快捷键一览表 Tsql123 Windows Service OnCustomCommand 的問題 vba控件常规使用 vba 中 加载DLL错误的解决方法 无法在Web服务器上启动调试。您不具备调试此应用程序的权限,此项目的URL位于Internet区域。 安装程序工具 (Installutil.exe) 文件上传 XML简单操作 WSE2.0加密Web Service soap验证 windows2003reg 在1433 以外的任何端口上连接到SQL Server
SubVersion的多库权限配置
· 2007-04-30 · via 博客园 - 城

   SubVersion真的是简单易用,功能也很强大,弄了几天终于把多库的权限搞定了

我用的是Apache web服务器,客户端为Tortoise1.4.3
安装方法这里就不介绍了,网上有很多SubVersion专家写的配置过程!

Apache的conf文件主要配置如下
d:/svn/conf/svn_auth_passwd是我的用户密码文件
d:/svn/conf/Role.access组配置文件
<Location /svn>
    DAV svn
SVNListParentPath on
    SVNParentPath "d:/svn"
  #  SSLRequireSSL
    AuthType Basic 
    AuthName "Login SubVersion"
    AuthUserFile "d:/svn/conf/svn_auth_passwd"
    AuthzSVNAccessFile "d:/svn/conf/Role.access"
   <LimitExcept GET PROPFIND OPTIONS REPORT>
       Require valid-user
   </LimitExcept>
</Location>

      权限组的配置文件内容如下,从文件中可以看到我一共建了2个库(project1,project2).
   功能:AdminProject1可以读写project1,只能读project2,
      AdminProject2可以读写project2,只能读project1,如果不想让彼此有读权限,
      把[/] @GuestGroup = r dangerman = 去掉即可
    (有两个用户AdminProject1,AdminProject2,建用户的命令我就不写了,网上google一下)
[groups]
AdminGroupProject1 = AdminProject1
AdminGroupProject2 = AdminProject2
GuestGroup = AdminProject1,AdminProject2
[/]
@GuestGroup = r
dangerman =
[project1:/]
@AdminGroupProject1 = rw
[project2:/]
@AdminGroupProject2 = rw