These forums are locked and archived, but all topics have been migrated to the new forum. You can search for this topic on the new forum: Search for Gforge install on Virtualmin on the new forum.
hi all
My domain is ativn.net and I am using Centos5 with Webmin and Virtualmin. I also install Gforge on my VPS.
After finish installing Gforge, I can see that Virtual makes a new Apache Webserver as picture:
http://i232.photobucket.com/albums/ee231/htc4350/catsfdsaf.png
but, I do not know how to set a point of Gforge install to run it (Normally, i can go to www.ativn.net to run Gforge, but now, it is still demo page from Apache)
Coudl you help me how to point the link of Gforge to Apache to run it?
Thanks in advance
In your /etc/httpd/httpd.conf file, there is a line that reads:
[code:1]
NameVirtualHost *
[/code:1]
That line is causing trouble -- comment that out by putting a # mark in front of the line.
Next, look for the VirtualHost section associated with "www.ativn.net".
It will have a line like this at the top:
[code:1]
<VirtualHost *:80>
[/code:1]
You need to change that line to read:
[code:1]
<VirtualHost YOUR_IP_ADDRES:80>
[/code:1]
And then restart Apache after you make those changes -- that should solve the problem.
-Eric