git-daemon.confd 710 B

1234567891011121314151617181920
  1. # conf.d file for git-daemon
  2. #
  3. # Please check man 1 git-daemon for more information about the options
  4. # git-daemon accepts. You MUST edit this to include your repositories you wish
  5. # to serve.
  6. #
  7. # Some of the meaningful options are:
  8. # --syslog --- Enables syslog logging
  9. # --verbose --- Enables verbose logging
  10. # --export-all --- Exports all repositories
  11. # --port=XXXX --- Starts in port XXXX instead of 9418
  12. #
  13. GITDAEMON_OPTS="--syslog --base-path=/var/git"
  14. # To run an anonymous git safely, the following user should be able to only
  15. # read your Git repositories. It should not be able to write to anywhere on
  16. # your system, esp. not the repositories.
  17. GIT_USER="nobody"
  18. GIT_GROUP="nobody"