I have a vps server. LAMP is installed in it.
Consider the IP as 99.88.77.66
I want to run two application on this site. One is vtiger and other is redmine.
Installation Location
redmine: /var/www/html/redmine
vtiger: /var/www/html/vtigerCRM
I configured httpd.conf as..
ServerName 99.88.77.66:80
..
DocumentRoot "/var/www/html"
..
<Directory "/var/www/html">
..
NameVirtualHost *:80
..
<VirtualHost *:80>
DocumentRoot "/var/www/html"
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "/var/www/html/redmine/public"
ServerName localhost
ServerAlias redmine
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "/var/www/html/vtigerCRM"
ServerName localhost
ServerAlias vtiger
</VirtualHost>
/etc/hosts as..
127.0.0.1 redmine
127.0.0.1 vtiger
127.0.0.1 localhost
Please help me configure in such a way that, by access http://99.88.77.66/redmine
-- I would be able to access redmine and by http://99.88.77.66/vtiger
-- vtigerCRM.