I currently have the devel/git port installed and I am using it to host some Git repositories.
/etc/rc.conf:
Now a few of the users on my server are interested in having their own personal Git repositories.
How do I provide this option and ensure the following:
/etc/rc.conf:
Code:
git_daemon_enable="YES"
git_daemon_directory="/var/spool/git/repo"
git_daemon_flags="--syslog --base-path=/var/spool/git/repo --export-all --reuseaddr --detach
How do I provide this option and ensure the following:
- The repositories are private, only usable by the individual user.
- They use their FreeBSD username and password to connect to the Git daemon.
- They can not access my existing repositories under /var/spool/git/repo.
- Preferably the repositories are stored in the user's home directory under a sub-folder called "git'.
Last edited by a moderator: