How to configure the gitolite on a plesk panel single domain.
When I use a /bin/bash user created by plesk, the home folder becomes /var/www/vhosts/{user}/
Then after install gitolite there, the user still not using the $HOME/bin/ folder to find the gitolite binary, and uses the system binary, so always when I try to clone the gitolite-admin come's a empty directory.
How to configure the plesk ssh domain user to use the $HOME/bin folder to access the gitolite repo and it binaries?
I'm using CentOS 5 with Plesk 10.0.1
Thanks.
I will assume that you are using some variables like:
Go in your plesk panel and add SSH /bin/bash access to the user that you wan't to install gitolite repositorie.
Now SSH login your server as root privileges. And type
su - gartz
you are now in your user bash.Type
pwd
it will show your${HOME}
like:/var/www/vhosts/gartz.com.br/
go back to super user and add privileges to user can write your own home folder and add a git folder:
Now you have this:
/var/www/vhosts/gartz.com.br/git
Download your gitolite to the git folder, then add a user with will have access to your git repositories only, like using suffix or preffix git:
adduser gartz.git
Edit your passwd file to your git user have the same ids from the normal user and change the home to the correct git folder. (you will need root privileges again)
It will show something like this:
Now edit your other user
gartz.git
to be like this:Add
.ssh
folder with authorized_keys for your rsa key. Then login your shell using your account likegartz.git
install your gitolite now.Go to your own computer and clone your gitolite-admin:
Change your config file, add your keys and repos, commit and push.
You can do this for any domain you want. For more info installing git http://progit.org/book/ch4-8.html