Apache2 just listening to https?

2005-07-28 Thread Roger Grosswiler
Hi, I have apache2 running, with ssl. now, if i call my domain in a browser not using https, i cannot connect. ps aux shows this: root59847 0.0 4.3 7528 4544 ?? Ss5:34PM 0:12.11 /usr/local/sbin/httpd -DSSL www 59848 0.0 6.5 9368 6888 ?? I 5:34PM 0:03.80

Re: Apache2 just listening to https?

2005-07-28 Thread Eirik Øverby
On Jul 28, 2005, at 8:58 AM, Roger Grosswiler wrote: Hi, I have apache2 running, with ssl. now, if i call my domain in a browser not using https, i cannot connect. Try adding port 80 to your Listen statement(s) in httpd.conf. Also make sure you have virtual hosts that capture requests

Re: Apache2 just listening to https?

2005-07-28 Thread Roger Grosswiler
Try adding port 80 to your Listen statement(s) in httpd.conf. Also make sure you have virtual hosts that capture requests on port 80. /Eirik i did a file called virtual.conf in /usr/local/etc/apache2/Include with this content: VirtualHost *:80 ServerName freebsd.domain.net ServerAlias

Re: Apache2 just listening to https?

2005-07-28 Thread Uzi Klein
Roger Grosswiler wrote: i did a file called virtual.conf in /usr/local/etc/apache2/Include with this content: VirtualHost *:80 ServerName freebsd.domain.net ServerAlias freebsd.domain.net DocumentRoot /usr/local/www/data /VirtualHost ...which should be loaded on startup. Also, i activated

Re: Apache2 just listening to https?

2005-07-28 Thread Subhro
Roger Grosswiler wrote: Try adding port 80 to your Listen statement(s) in httpd.conf. Also make sure you have virtual hosts that capture requests on port 80. /Eirik i did a file called virtual.conf in /usr/local/etc/apache2/Include with this content: VirtualHost *:80

Re: Apache2 just listening to https?

2005-07-28 Thread John R. Owens
Uzi Klein wrote: Roger Grosswiler wrote: i did a file called virtual.conf in /usr/local/etc/apache2/Include with this content: VirtualHost *:80 ServerName freebsd.domain.net ServerAlias freebsd.domain.net DocumentRoot /usr/local/www/data /VirtualHost ...which should be loaded on

Re: Apache2 just listening to https?

2005-07-28 Thread Roger Grosswiler
Uzi Klein wrote: Roger Grosswiler wrote: i did a file called virtual.conf in /usr/local/etc/apache2/Include with this content: VirtualHost *:80 ServerName freebsd.domain.net ServerAlias freebsd.domain.net DocumentRoot /usr/local/www/data /VirtualHost ...which should be loaded on

Re: Apache2 just listening to https?

2005-07-28 Thread John R. Owens
Roger Grosswiler wrote: Uzi Klein wrote: Roger Grosswiler wrote: i did a file called virtual.conf in /usr/local/etc/apache2/Include with this content: VirtualHost *:80 ServerName freebsd.domain.net ServerAlias freebsd.domain.net DocumentRoot /usr/local/www/data /VirtualHost ...which should be

Re: Apache2 just listening to https?

2005-07-28 Thread Eirik Øverby
On Jul 28, 2005, at 10:01 AM, Roger Grosswiler wrote: Try adding port 80 to your Listen statement(s) in httpd.conf. Also make sure you have virtual hosts that capture requests on port 80. /Eirik i did a file called virtual.conf in /usr/local/etc/apache2/Include with this content:

Re: Apache2 just listening to https?

2005-07-28 Thread Uzi Klein
Eirik Øverby wrote: On Jul 28, 2005, at 10:01 AM, Roger Grosswiler wrote: Try adding port 80 to your Listen statement(s) in httpd.conf. Also make sure you have virtual hosts that capture requests on port 80. /Eirik i did a file called virtual.conf in /usr/local/etc/apache2/Include

Re: Apache2 just listening to https?

2005-07-28 Thread Oliver Fromme
Uzi Klein [EMAIL PROTECTED] wrote: Eirik Øverby wrote: On Jul 28, 2005, at 10:01 AM, Roger Grosswiler wrote: VirtualHost *:80 ServerName freebsd.domain.net ServerAlias freebsd.domain.net DocumentRoot /usr/local/www/data /VirtualHost Make sure you are not enabling

Re: Apache2 just listening to https?

2005-07-28 Thread Uzi Klein
Oliver Fromme wrote: Uzi Klein [EMAIL PROTECTED] wrote: Eirik Øverby wrote: On Jul 28, 2005, at 10:01 AM, Roger Grosswiler wrote: VirtualHost *:80 ServerName freebsd.domain.net ServerAlias freebsd.domain.net DocumentRoot /usr/local/www/data /VirtualHost Make

Re: Apache2 just listening to https?

2005-07-28 Thread Roger Grosswiler
On Jul 28, 2005, at 10:01 AM, Roger Grosswiler wrote: Try adding port 80 to your Listen statement(s) in httpd.conf. Also make sure you have virtual hosts that capture requests on port 80. /Eirik i did a file called virtual.conf in /usr/local/etc/apache2/Include with this content:

Re: Apache2 just listening to https?

2005-07-28 Thread Roger Grosswiler
done. You can configure SSL perfectly fine per virtual host, provided that they have separate addresses. You can even use SSL for virtual hosts that share an address, if they listen on different ports (in this case you can use redirects for convenience, so users don't have to type the

Re: Apache2 just listening to https?

2005-07-28 Thread Roger Grosswiler
On Jul 28, 2005, at 10:01 AM, Roger Grosswiler wrote: Try adding port 80 to your Listen statement(s) in httpd.conf. Also make sure you have virtual hosts that capture requests on port 80. /Eirik i did a file called virtual.conf in /usr/local/etc/apache2/Include with this content:

Re: Apache2 just listening to https?

2005-07-28 Thread Oliver Fromme
Uzi Klein [EMAIL PROTECTED] wrote: Oliver Fromme wrote: Uzi Klein [EMAIL PROTECTED] wrote: Actually, SSL can not be configured per name vhost. (or at least can not work) Because SSL handshake is used before http headers, it just can't be done. You can configure SSL

Re: Apache2 just listening to https?

2005-07-28 Thread Randy Rowe
Connected to freebsd.gwch.net (192.168.0.101). Escape character is '^]'. GET /HTTP/1.0 !DOCTYPE HTML PUBLIC -//IETF//DTD HTML 2.0//EN htmlhead title404 Not Found/title /headbody h1Not Found/h1 pThe requested URL /HTTP/1.0 was not found on this server./p hr addressApache/2.0.53 (FreeBSD)

Re: Apache2 just listening to https?

2005-07-28 Thread Uzi Klein
Oliver Fromme wrote: Uzi Klein [EMAIL PROTECTED] wrote: Oliver Fromme wrote: Uzi Klein [EMAIL PROTECTED] wrote: Actually, SSL can not be configured per name vhost. (or at least can not work) Because SSL handshake is used before http headers, it just can't be done. You

Re: Apache2 just listening to https?

2005-07-28 Thread Tom Jensen
On Thu, Jul 28, 2005 at 03:09:28PM +0200, Roger Grosswiler wrote: Connected to freebsd.gwch.net (192.168.0.101). Escape character is '^]'. GET /HTTP/1.0 !DOCTYPE HTML PUBLIC -//IETF//DTD HTML 2.0//EN htmlhead title404 Not Found/title /headbody h1Not Found/h1 pThe requested URL

Re: Apache2 just listening to https?

2005-07-28 Thread Uzi Klein
Roger Grosswiler wrote: Connected to freebsd.gwch.net (192.168.0.101). Escape character is '^]'. GET /HTTP/1.0 !DOCTYPE HTML PUBLIC -//IETF//DTD HTML 2.0//EN htmlhead title404 Not Found/title /headbody h1Not Found/h1 pThe requested URL /HTTP/1.0 was not found on this server./p Seems like you

Re: Apache2 just listening to https?

2005-07-28 Thread Roger Grosswiler
Are you sure you are looking at the right logfile? try to grep your logs for that request: # grep GET /HTTP/1.0 /var/log/httpd* perhaps you got a conflict in vhosts config? -Uzi yes, i am. because now, i can access port 80 from my internal network - but not from the external. but even if

Re: Apache2 just listening to https?

2005-07-28 Thread Oliver Fromme
Uzi Klein [EMAIL PROTECTED] wrote: The original post has VirtualHost *:80 ServerName freebsd.domain.net ServerAlias freebsd.domain.net DocumentRoot /usr/local/www/data /VirtualHost ...which should be loaded on startup. Also, i activated NameVirtualHost *:80

Re: Apache2 just listening to https?

2005-07-28 Thread Uzi Klein
Roger Grosswiler wrote: Are you sure you are looking at the right logfile? try to grep your logs for that request: # grep GET /HTTP/1.0 /var/log/httpd* perhaps you got a conflict in vhosts config? -Uzi yes, i am. because now, i can access port 80 from my internal network - but not from

Re: Apache2 just listening to https?

2005-07-28 Thread Roger Grosswiler
Am Donnerstag, den 28.07.2005, 16:21 +0200 schrieb Oliver Fromme: Uzi Klein [EMAIL PROTECTED] wrote: The original post has VirtualHost *:80 ServerName freebsd.domain.net ServerAlias freebsd.domain.net DocumentRoot /usr/local/www/data /VirtualHost ...which

Re: Apache2 just listening to https?

2005-07-28 Thread John R. Owens
Roger Grosswiler wrote: On Jul 28, 2005, at 10:01 AM, Roger Grosswiler wrote: Try adding port 80 to your Listen statement(s) in httpd.conf. Also make sure you have virtual hosts that capture requests on port 80. /Eirik i did a file called virtual.conf in /usr/local/etc/apache2/Include

Re: Apache2 just listening to https?

2005-07-28 Thread Roger Grosswiler
Am Donnerstag, den 28.07.2005, 17:51 +0200 schrieb Uzi Klein: Roger Grosswiler wrote: Are you sure you are looking at the right logfile? try to grep your logs for that request: # grep GET /HTTP/1.0 /var/log/httpd* perhaps you got a conflict in vhosts config? -Uzi yes, i am.

Re: Apache2 just listening to https?

2005-07-28 Thread Uzi Klein
Roger Grosswiler wrote: [...] yes, i am. because now, i can access port 80 from my internal network - but not from the external. but even if a firewall is installed, i have just one nic installed and i make no difference from the source. Perhaps, my apache doesn't listen alright...i don't know.