<br><br><div class="gmail_quote">On Thu, May 31, 2012 at 9:38 AM, Erik Anderson <span dir="ltr"><<a href="mailto:erikerik@gmail.com" target="_blank">erikerik@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im">On Thu, May 31, 2012 at 3:56 AM, Craig Rosenblum <<a href="mailto:crosenblum@gmail.com">crosenblum@gmail.com</a>> wrote:<br></div>
Edit the file that contains that line and add the following:<br>
<br>
NameVirtualHost *:8082<br>
<br>
Then all you need to do is start adding virtualhosts.<br>
<br>
<VirtualHost *:8082><br>
    ServerName <a href="http://example.com" target="_blank">example.com</a><br>
    DocumentRoot /path/to/web/root<br>
<br>
    # add the following two lines if you want vhost-specific logging<br>
    ErrorLog /ver/log/apache2/example.com-error<br>
    CustomLog /var/log/apache2/example.com-access combined<br>
</VirtualHost><br>
<br></blockquote><div><br></div><div>If my memory is working correctly, the argument to VirtualHost must match the argument to a NameVirtualHost directive. </div><div><br></div><div>i.e.: Apache will complain about this (and likely won't work), even though intuitively you might think it's just fine.  </div>
<div><br></div><div>NameVirtualHost <a href="http://192.168.1.1:8282">192.168.1.1:8282</a></div><div><br></div><div><VirtualHost *:8282></div><div></VirtualHost> </div><div><br></div><div>-Rob</div><div><br></div>
<div> </div></div>