最終更新:2012-03-07 (水) 16:03:55 (4430d)  

svnserve.conf
Top / svnserve.conf

[general]
 # anon-access = read
 # auth-access = write
 anon-access = none
 auth-access = write

 password-db = /path/to/.svnpasswd

 realm = auth
 authz-db = authz

リポジトリに対するアクセス設定

  • 匿名ユーザの場合と、認証済みユーザの場合が設定可能。
  • 匿名ユーザは「anon-access」で認証ユーザは「auth-access」となる。
  • 値は「none」、「read」、「write」を設定できる。

デフォルト値

リポジトリに対する認証 (password-db)

### This file is an example password file for svnserve.                                           
### Its format is similar to that of svnserve.conf. As shown in the                               
### example below it contains one section labelled [users].                                       
### The name and password for each user follow, one account per line.
[users]
hoge = hogepass

パスごとのアクセス設定 (authz-db)

[groups]
developers = hoge
manager = huga
[/]
@manager = rw
* = r

関連

参考