From the Apache thread in the Adanced forum:
Quote:
note: make sure you put a left angle bracket in front of the Virtual directives --- for some reason I can't do it in here without losing info behind the bracket, so I left them off the example
Thats because your browser interprets anything within angle brackets to be an HTML tag. You need to quote these brackets if you want them to appear correctly. The proper quotes are:
&lt; for <
and
&gt; for >
So, for example, you would have to type:
&lt;VirtualHost blahblah&gt; to have that line show up properly in the forum.
Just FYI...