gitlist: Installation Problems
I’m really sorry for disturbing you guys, which some lame installation problems, but I just can’t figure it out, how to get GitList working.
The error message on my browser (Im accessing GitList from a remote IP btw) says:
The requested URL /gitlist/ was not found on this server.
what I did so far:
apt-get install php apache2 git
cd /var/www/
mkdir gitlist
wget https://s3.amazonaws.com/gitlist/gitlist-0.5.0.tar.gz
tar xvzf gitlist
mkdir cache
chmod 777 cache
mv config.ini-example config.ini
* changed repositories[]= 'path/to/my/git directory/*
* changed RewriteBase to /var/www/gitlist *
When I enter IP-to-my-vps/gitlist I receive the previoulsy mentioned error message, do you guys can help me, get this working? The error-log doesn’t show anything. I declared my git-directory in my home-directory of my main user with git init
About this issue
- Original URL
- State: closed
- Created 7 years ago
- Comments: 15
Hi, I think that this problem is related to apache virtual host configuration. Try to find in your apache virtual host configuration something like:
<Directory ...> AllowOverride None </Directory>Change it to<Directory ...> AllowOverride All </Directory>