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