Mailing List Archive

help with IP
hello list!


I need some information about of the manipulation of IP, foe example:


I have one public IP, and i want to link some domains to that IP, i
imagine www.zeta.com and www.zoto.com and www.zuto.com, and i want to
link them to the same IP.

i want to set those domains into diferentes places, for example:

/var/www/html/zeta/index.html
/var/www/html/zoto/index.html
/var/www/html/zuto/index.html

is that posible?

thanks



-------------------------------------------------------
Este mensaje fue enviado mediante Web E-mail de MegaRed
INTERNET POR CABLE <<<<<
>>>>>http://www.megared.net.mx


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org
Re: help with IP [ In reply to ]
don't know that i can help with your problem but your date is set wrong
somewhere or you have software that is not y2k compliant... the date on
your messages appears here as dec 31 '69...

lira@ver.megared.net.mx wrote:
>
> hello list!
>
> I need some information about of the manipulation of IP, foe example:
>
> I have one public IP, and i want to link some domains to that IP, i
> imagine www.zeta.com and www.zoto.com and www.zuto.com, and i want to
> link them to the same IP.
>
> i want to set those domains into diferentes places, for example:
>
> /var/www/html/zeta/index.html
> /var/www/html/zoto/index.html
> /var/www/html/zuto/index.html
>
> is that posible?
>
> thanks
>
> -------------------------------------------------------
> Este mensaje fue enviado mediante Web E-mail de MegaRed
> INTERNET POR CABLE <<<<<
> >>>>>http://www.megared.net.mx
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org

--
_\/
(@@) Waldo Kitty, Waldo's Place USA
__ooO_( )_Ooo_____________________ telnet://bbs.wpusa.dynip.com
_|_____|_____|_____|_____|_____|_____ http://www.wpusa.dynip.com
____|_____|_____|_____|_____|_____|_____ ftp://ftp.wpusa.dynip.com
_|_Eat_SPAM_to_email_me!_YUM!__|_____|_____ wkitty42 (at) alltel.net

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org
Re: help with IP [ In reply to ]
Lookup Name Based Virtual Hosting in the Apache Manual.
That's what you'll need to setup for this scenario.


-=- RuneImp
ImpTech - Web Design, Hosting & Computer Tech
http://imptech.net
rune@imptech.net


----- Original Message -----
From: <lira@ver.megared.net.mx>
To: <users@httpd.apache.org>
Sent: Thursday, February 07, 2002 6:14 PM
Subject: help with IP


hello list!


I need some information about of the manipulation of IP, foe example:


I have one public IP, and i want to link some domains to that IP, i
imagine www.zeta.com and www.zoto.com and www.zuto.com, and i want to
link them to the same IP.

i want to set those domains into diferentes places, for example:

/var/www/html/zeta/index.html
/var/www/html/zoto/index.html
/var/www/html/zuto/index.html

is that posible?

thanks


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org
Re: help with IP [ In reply to ]
you'll just have to configure your virtual host in httpd.conf

<VirtualHost zeta.com>
ServerName sample
DocumentRoot /var/www/html/zeta
DirectoryIndex index.html
</VirtualHost>

those domains should be pointed to the same ipaddress so that your vhost
directive will work....

hope this would help

Jesse Delima
IT Specialist (Data Communications)
INQ7 Interactive, Inc.
www.inq7.net
----- Original Message -----
From: <lira@ver.megared.net.mx>
To: <users@httpd.apache.org>
Sent: Friday, February 08, 2002 10:09 AM
Subject: help with IP


> hello list!
>
>
> I need some information about of the manipulation of IP, foe example:
>
>
> I have one public IP, and i want to link some domains to that IP, i
> imagine www.zeta.com and www.zoto.com and www.zuto.com, and i want to
> link them to the same IP.
>
> i want to set those domains into diferentes places, for example:
>
> /var/www/html/zeta/index.html
> /var/www/html/zoto/index.html
> /var/www/html/zuto/index.html
>
> is that posible?
>
> thanks
>
>
>
> -------------------------------------------------------
> Este mensaje fue enviado mediante Web E-mail de MegaRed
> INTERNET POR CABLE <<<<<
> >>>>>http://www.megared.net.mx
>
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org
Re: help with IP [ In reply to ]
NameVirtualHost 111.222.333.444

<VirtualHost 111.222.333.444>
Document Root /var/www/html/zeta
ServerName www.zeta.com
ServerAlias zeta.com
AccessLog /var/www/html/zeta/logs/access_log
ErrorLog /var/www/html/zeta/logs/error_log
</VirtualHost>

<VirtualHost 111.222.333.444>
Document Root /var/www/html/zoto
ServerName www.zoto.com
ServerAlias zoto.com
AccessLog /var/www/html/zoto/logs/access_log
ErrorLog /var/www/html/zoto/logs/error_log
</VirtualHost>

<VirtualHost 111.222.333.444>
Document Root /var/www/html/zuto
ServerName www.zuto.com
ServerAlias zuto.com
AccessLog /var/www/html/zuto/logs/access_log
ErrorLog /var/www/html/zuto/logs/error_log
</VirtualHost>

This only works if you are running the LATEST version of Apache.

Also, make sure you have created the "logs" directory before restarting
apache, or it will fail. If you do not want the logs, then just omit the
lines.

Scott

----- Original Message -----
From: <lira@ver.megared.net.mx>
To: <users@httpd.apache.org>
Sent: Thursday, February 07, 2002 1:14 PM
Subject: help with IP


> hello list!
>
>
> I need some information about of the manipulation of IP, foe example:
>
>
> I have one public IP, and i want to link some domains to that IP, i
> imagine www.zeta.com and www.zoto.com and www.zuto.com, and i want to
> link them to the same IP.
>
> i want to set those domains into diferentes places, for example:
>
> /var/www/html/zeta/index.html
> /var/www/html/zoto/index.html
> /var/www/html/zuto/index.html
>
> is that posible?
>
> thanks
>
>
>
> -------------------------------------------------------
> Este mensaje fue enviado mediante Web E-mail de MegaRed
> INTERNET POR CABLE <<<<<
> >>>>>http://www.megared.net.mx
>
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org
Re: help with IP [ In reply to ]
hi,

you should really care about your system clock. It took some time to
find a mail from 01-01-1970... ;)

lira@ver.megared.net.mx wrote:

>hello list!
>
>
>I need some information about of the manipulation of IP, foe example:
>
>
>I have one public IP, and i want to link some domains to that IP, i
>imagine www.zeta.com and www.zoto.com and www.zuto.com, and i want to
>link them to the same IP.
>
>i want to set those domains into diferentes places, for example:
>
>/var/www/html/zeta/index.html
>/var/www/html/zoto/index.html
>/var/www/html/zuto/index.html
>
>is that posible?
>
>thanks
>
>
>
>-------------------------------------------------------
>Este mensaje fue enviado mediante Web E-mail de MegaRed
>INTERNET POR CABLE <<<<<
>
>>>>>>http://www.megared.net.mx
>>>>>>
>
>
>---------------------------------------------------------------------
>The official User-To-User support forum of the Apache HTTP Server Project.
>See <URL:http://httpd.apache.org/userslist.html> for more info.
>To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>For additional commands, e-mail: users-help@httpd.apache.org
>
>