X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=monkeysphere.conf;h=1a6cff19597873aa4753bfe8eb31368618ac1504;hb=f047b198433a0781e35b5ca0cea0bc532d9a64ce;hp=1e3abf92d2ff6c3373a50b45147f786d9cc71cce;hpb=7ba522ae456c76c6d131ecac990815f7d55695d5;p=monkeysphere.git diff --git a/monkeysphere.conf b/monkeysphere.conf index 1e3abf9..1a6cff1 100644 --- a/monkeysphere.conf +++ b/monkeysphere.conf @@ -1,7 +1,26 @@ # monkeysphere configuration file # this is currently meant to be sourced by bash. + +# configuration directory CONF_DIR=/etc/monkeysphere + +# where the per-user authorized user id files are stored AUTH_USER_IDS_DIR="$CONF_DIR"/auth_user_ids -KEYRING="$CONF_DIR"/keyring.gpg -KEYSERVER=subkeys.pgp.net + +# where the per-user authorized_keys info is stored +#AUTH_KEYS_DIR=/var/lib/monkeysphere/authorized_keys +AUTH_KEYS_DIR="$CONF_DIR"/authorized_keys + +# gpg home directory for server GNUPGHOME="$CONF_DIR"/gnupg + +# gpg keyserver to search for keys +KEYSERVER=subkeys.pgp.net + +# acceptable key capabilities for user keys +# can be any combination of: +# e = encrypt +# s = sign +# c = certify +# a = authentication +REQUIRED_KEY_CAPABILITY='sca'