summaryrefslogtreecommitdiff
path: root/etc/monkeysphere-server.conf
blob: adbac7ec474c2879b6aa41200f8b5e24ad3622c1 (plain)
  1. # MonkeySphere server configuration file.
  2. # This is an sh-style shell configuration file. Variable names should
  3. # be separated from their assignements by a single '=' and no spaces.
  4. # Environement variables with the same names as these variables but
  5. # prefeced by "MONKEYSPHERE_" will take precedence over the values
  6. # specified here.
  7. # User who controls the monkeysphere authentication keyring.
  8. #MONKEYSPHERE_USER=monkeysphere
  9. # Log level. Can be SILENT, ERROR, INFO, DEBUG, in increasing order
  10. # of verbosity.
  11. #LOG_LEVEL=INFO
  12. # Path to authorized_user_ids file to process to create
  13. # authorized_keys file. '%h' will be replaced by the home directory
  14. # of the user, and %u will be replaced by the username of the user.
  15. # For purely admin-controlled authorized_user_ids, you might put them
  16. # in /etc/monkeysphere/authorized_user_ids/%u
  17. #AUTHORIZED_USER_IDS="%h/.monkeysphere/authorized_user_ids"
  18. # Whether to add user controlled authorized_keys file to
  19. # monkeysphere-generated authorized_keys file. Should be path to file
  20. # where '%h' will be replaced by the home directory of the user or
  21. # '%u' by the username. To not add any user-controlled file, put "-"
  22. # FIXME: this usage of "-" contravenes the normal convention where "-"
  23. # means standard in/out. Why not use "none" or "" instead?
  24. #RAW_AUTHORIZED_KEYS="%h/.ssh/authorized_keys"