Quote:
|
Originally Posted by tftd
My NameVirtualHost is the IP of the machine. For example
NameVirtualHost 123.123.123.123 :80
<VirtualHost 123.123.123.123 :80>
Documen Root /somewhere/subdomain
ServerName www.subdomain.mydomain.com
ErrorLog logs/bla.error_log
</VirtualHost>
|
For Apache 1.3, it must be like this:
Code:
NameVirtualHost 123.123.123.123
<VirtualHost 123.123.123.123>
Documen Root /somewhere/subdomain
ServerName www.subdomain.mydomain.com
ErrorLog logs/bla.error_log
</VirtualHost>