Project

General

Profile

Instalation problem - symbolic link and VirtualHost

Added by Paweł Stuczyński almost 12 years ago

Hi,
I have installed Radmine and tested on webrick and it's working good.

Now I'm trying to deploy it on passenger_module (apache). I think that passenger_module is installed correctly.

My host is also www serwer (CentOS 5) with suPHP mod.

- I have installed redmine in /opt/redmine with chown apache:apache
- created symbolic link: ln s /opt/redmine/public /home/my_user/domains/sharedip/redmine
edited VirtualHost:

<VirtualHost my_ip:80>
 SerwerAdmin webmaster@localhost
 AliasMatch ^/~([^/]+)(/.*)* /home/$1/public_html$2
 DocumentRoot /var/www/html
 ServerName localhost
 ScriptAlias /cgi-bin/ /var/www/cgi-bin/
 CustomLog /var/log/httpd/homedir.log homedir

 RackBaseURI /redmine
 <Directory /home/my_user/domains/sharedip/redmine>
  Options -MultiViews
 </Directory>
</VirtualHost>

When I trying to run my_ip/redmine i get:
"Directory index forbidden by Options directive: /home/my_user/domains/sharedip/redmine/"

Any idea?