Forum OpenACS Q&A: Re: virtual IPs, apache reverse proxy and aolserver...

Collapse
Posted by Malte Sussdorff on
Well, if you can do it when Apache is down, then it shows that apache is grabing all IP addresses it can lay it's hand on (as is the default btw.).

You have to configure a virtual server and make apache listen only on that specific address.

Take a look at the "Listen" directive.

A virtual host can look like this

<VirtualHost 193.201.xxx.xxx>
    ScriptAlias /cgi/ /usr/local/httpd/cgi-bin/
    DocumentRoot /web/apache/www/
    ServerName myserver.com
</VirtualHost>