On 18/09/2007, Néstor Boscán <[EMAIL PROTECTED]> wrote:
> I have a server that has an Apache Server 1.3. The server only has 1 IP and
> can be access using two differente names server1 and server2. I would like
> to create a VirtualHost for each name that sets the ServerName. Now I tried
> the following

Try:

NameVirtualHost *:80

<VirtualHost *:80>
  ServerName server1
  ...
</VirtualHost>

<VirtualHost *:80>
  ServerName server2
  ...
</VirtualHost>

-- 
noodl

Reply via email to