Need suggestion on multiple Users linked to the same redmine folder
Added by Ajeet Raina about 12 years ago
Hi,
I have redmine 2.0.3 installed on my CentOS machine. I need to setup redmine repository accessible through two website:
codescope.com and codesvilla.com. I have two users - alpha and beta.
Hence I tried putting it this way:
[code]
ServerName codescope.com
ServerAlias www.codescope.com.com
RailsBaseURI /
RailsEnv production
DocumentRoot /home/alpha/public_html/redmine/public
<Directory /home/alpha/public_html/redmine/public>
Options -MultiViews
</Directory>
[/code]
[code]
ServerAlias www.codesvilla.com
RailsBaseURI /
RailsEnv production
DocumentRoot /home/beta/public_html/redmine/public
<Directory /home/beta/public_html/redmine/public>
Options -MultiViews
</Directory>
[/code]
The first one is working but not the second one.
It is showing 500 error.
What I did is linked :
#ln -s /usr/local/share/redmine-2.0.3/public /home/alpha/public_html/redmine
#ln -s /usr/local/share/redmine-2.0.3/public /home/beta/public_html/redmine
Am I doing anything wrong?