I just got done installing tracks and have been very impressed with it so far.
Here is my question:
Lets say, I have a a website such as http://www.abcdefg.com
I want to be able to access the tracks app from outside by typing http://www.abcdefg.com/tracks
What do I need to do to apache2.conf to make it work? Sorry, if its a basic question plus I am new to apache, ubuntu and tracks (all together).
here is what the apache2.conf looks like right now (abcdefg.com is just an example):
<———- cut here———>
<VirtualHost *:80>
ServerName www.abcdefg.com
ServerAlias abcdefg.com
DocumentRoot /var/www/abcdefg
ErrorLog /var/log/apache2/abcdefg.com
</VirtualHost>
<VirtualHost *:80>
ServerName rails
DocumentRoot /var/www/tracks/public/
ErrorLog /var/www/tracks/log/server.log
<Directory /var/www/tracks/public>
Options ExecCGI FollowSymLinks
AllowOverride all
Allow from all
Order allow,deny
</Directory>
</VirtualHost>
<———- cut here———>
Thanks
-R
