Merge commit 'dkg/master'
[monkeysphere.git] / monkeysphere.conf
1 # monkeysphere configuration file
2 # this is currently meant to be sourced by bash.
3
4 # configuration directory
5 CONF_DIR=/etc/monkeysphere
6
7 # where the per-user authorized user id files are stored
8 AUTH_USER_IDS_DIR="$CONF_DIR"/auth_user_ids
9
10 # where the per-user authorized_keys info is stored
11 #AUTH_KEYS_DIR=/var/lib/monkeysphere/authorized_keys
12 AUTH_KEYS_DIR="$CONF_DIR"/authorized_keys
13
14 # gpg home directory for server
15 GNUPGHOME="$CONF_DIR"/gnupg
16
17 # gpg keyserver to search for keys
18 KEYSERVER=subkeys.pgp.net
19
20 # acceptable key capabilities for user keys
21 # can be any combination of:
22 #   e = encrypt
23 #   s = sign
24 #   c = certify
25 #   a = authentication
26 REQUIRED_KEY_CAPABILITY='sca'