Project

General

Profile

Multiple Instance not working im getting index of page for second Instance.

Added by sriram sundar almost 10 years ago

Hello All,

I'm very new to redmine. So, First let me explain what i did..

Reference URL : HowTo_Install_Redmine_25x_on_Ubuntu_1404_with_Apache2_Phusion_Passenger_MySQL_and_Subversion

Step 1: Configure redmine package on /usr/share/teamone
Step 2: Configure redmine package on /usr/share/teamtwo
Step 3: Create DB for both teamone and teamtwo
Step 4: Configure apache2 settings on /etc/apache2/sites-available/000-default.conf

Configuration :

<VirtualHost 192.168.51.25:80>

        DocumentRoot /var/www/html

        <Directory /var/www/html/teamone>
        RailsBaseURI /teamone
        PassengerResolveSymlinksInDocumentRoot on
        </Directory>

# teamone Logs
        ErrorLog /usr/share/teamone/log/apache-error.log
        CustomLog /usr/share/teamone/log/apache-access.log combined

</VirtualHost>

<VirtualHost 192.168.51.25:80>

        DocumentRoot /var/www/html

        <Directory /var/www/html/teamtwo>
        RailsBaseURI /teamtwo
        PassengerResolveSymlinksInDocumentRoot on
        </Directory>

        # teamtwo Logs
        ErrorLog /usr/share/teamtwo/log/apache-error.log
        CustomLog /usr/share/teamtwo/log/apache-access.log combined
</VirtualHost>


Replies (1)

RE: Multiple Instance not working im getting index of page for second Instance. - Added by Martin P. over 9 years ago

Hi, please consider to use a different port (e.g. 8080 instead of 80) for your second instance.

like:

<VirtualHost 192.168.51.25:8080>
    ...

    (1-1/1)