TCLUG Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [TCLUG:14537] Apache Virtual hosting problems



On Thu, 9 Mar 2000, Steven Hutera wrote:
> NameVirtualHost 63.226.156.122
> 
> <VirtualHost 63.226.156.122>
> DocumentRoot /usr/home/mnvalley/www/
> ServerName www.mnvalley.net
> ErrorLog logs/mnvalley_err_log
> </VirtualHost>
> 
> NameVirtualHost 63.226.156.122
> 
> DocumentRoot /usr/home/customized/www/
> ServerName www.customizedincentives
> ErrorLog logs/customized_err_log
> </VirtualHost>

Here's what that should look like:

NameVirtualHost 63.226.156.122

<VirtualHost 63.226.156.122>
DocumentRoot /usr/home/mnvalley/www/
ServerName www.mnvalley.net
ErrorLog logs/mnvalley_err_log
</VirtualHost>

<VirtualHost 63.226.156.122>
DocumentRoot /usr/home/customized/www
ServerName www.customizedincentives.com
ErrorLog logs/customized_err_log
</VirtualHost>

---
nate carlson
the infinite loop
natecars@infiniteloop.com