Re: [EMAIL PROTECTED] port 80 and port 8080

2006-05-18 Thread Dmitri Colebatch
Hi, On 5/18/06, Ana Lucía Zapata Barros [EMAIL PROTECTED] wrote: It's possible for apache have 2 different ports, 80 and 8080, for the same service?? Yes. I modify the httpd.conf file, and add Listen 80 and start apache at port 80 with the sudo command. And when I start the apache at 8080

Re: [EMAIL PROTECTED] port 80 and port 8080

2006-05-18 Thread Victor Trac
From http://httpd.apache.org/docs/2.0/vhosts/examples.html: Listen 80 Listen 8080 NameVirtualHost 172.20.30.40:80 NameVirtualHost 172.20.30.40:8080 VirtualHost 172.20.30.40:80 ServerName www.example1.com DocumentRoot

RE: [EMAIL PROTECTED] port 80 and port 8080

2006-05-18 Thread Ana Lucía Zapata Barros
PROTECTED] En nombre de Dmitri Colebatch Enviado el: Thursday, May 18, 2006 8:48 AM Para: users@httpd.apache.org Asunto: Re: [EMAIL PROTECTED] port 80 and port 8080 Hi, On 5/18/06, Ana Lucía Zapata Barros [EMAIL PROTECTED] wrote: It's possible for apache have 2 different ports, 80 and 8080

Re: [EMAIL PROTECTED] port 80 and port 8080

2006-05-18 Thread Dmitri Colebatch
On 5/19/06, Ana Lucía Zapata Barros [EMAIL PROTECTED] wrote: This is the part that I modif. # # Listen: Allows you to bind Apache to specific IP addresses and/or # ports, in addition to the default. See also the VirtualHost # directive. # #Listen 3000 #Listen 12.34.56.78:80 Listen 80 Where

RE: [EMAIL PROTECTED] port 80 and port 8080

2006-05-18 Thread Ana Lucía Zapata Barros
Thank you Vic, It work!! =) -Mensaje original- De: Victor Trac [mailto:[EMAIL PROTECTED] Enviado el: Thursday, May 18, 2006 8:52 AM Para: users@httpd.apache.org Asunto: Re: [EMAIL PROTECTED] port 80 and port 8080 From http://httpd.apache.org/docs/2.0/vhosts/examples.html: Listen