Re: Bad request when users goto http://www.mydomain.com:443

2008-03-31 Thread Glyn Astill
Possibly use a RewriteRule or something of the sort? RewriteEngine On RewriteCond %{HTTP_HOST} . RewriteCond %{HTTP_HOST} ^www\.mydomain\.com$ RewriteCond %{SERVER_PORT} ^443$ RewriteRule ^(.*) https://www.mydomain.com/$1 [R=301,L] I've not tested that, and I doub't it's spot on but hopefully it'

Re: just installed certificate and I'm getting the wrong site...

2007-12-28 Thread Glyn Astill
Hi Chris, This sounds to me like more of an apache configuration problem. Perhaps if you posted some bits of your httpd.conf someone could spot the problem. Could you clarify on the old and new versions of wrongdomain.com? Are both still present on your server with the old one residing in another

Re: Question on SSL for Apache 1.3.9 on Windows

2007-11-01 Thread Glyn Astill
get the src and compile or read: http://tud.at/programm/apache-ssl-win32-howto.php3 --- Michael Driscoll <[EMAIL PROTECTED]> wrote: > I am running Apache 1.3.9 on Windows 2003 SP2 and need to install > SSL. I > am new to this so I was wondering if someone can help me? I am > unable to > find a p

RE: Mod-ssl and Apache

2007-09-12 Thread Glyn Astill
"Considering this a mailing list for modssl 1.x not 2.x" That's b*ks, the modssl.org site clearly has the latest version stated as 2.8.30 and the only link for a users mailing list is this one. Perhaps you'd like to inform us which list is for which version? --- Aaron Smith <[EMAIL PROTECTED

Re: Question about setting up openssl with apache

2007-08-16 Thread Glyn Astill
ace. --- [EMAIL PROTECTED] wrote: > Thanks very much. I found it. > > > Christa > > > > > > > Glyn Astill <[EMAIL PROTECTED]> > Sent by: [EMAIL PROTECTED] > 08/16/2007 02:54 PM > Please respond to > modssl-users@modssl.org > &g

Re: Question about setting up openssl with apache

2007-08-16 Thread Glyn Astill
ion, this is my first exposure to > openssl and > I've scoured the docs. > > Thanks for any assistance. > > Christa > > > > > > > > Christa A. Packer > Consolidated Communications > Systems Administrator > [EMAIL PROTECTED] > 2

Re: SSL and Virtual hosts?

2007-08-02 Thread Glyn Astill
l I really need is mail.mydomain.net to take me to my webmail, and anything else to just go to htdocs as normal. Can I set this up with just one virtual host, and then some sort of catch all filter for everything else? Thanks Glyn --- Aaron Dalton <[EMAIL PROTECTED]> wrote: > Glyn Ast

SSL and Virtual hosts?

2007-08-01 Thread Glyn Astill
Hi people, So I got ssl started, and now I'm trying to sort out my virtual hosts but I can't seem to get them to work. What I want to do is get https://mail.mydomain.net to take me to my mail directory and https://www.mydomain.net to take me to my htdocs, just like I can on http. For example I'm

SSL and Virtual hosts?

2007-08-01 Thread Glyn Astill
Hi people, So I got ssl started, and now I'm trying to sort out my virtual hosts but I cant seem to get them to work. For example I'm putting the VirtualHosts below between the IfDefine SSL tags in ssl.conf. Any pointers would be ace. Thanks. NameVirtualHost *:443 ServerName mail.mydomain.

Re: Apache and mod_ssl - refusing connections on https?

2007-08-01 Thread Glyn Astill
I figured it out people, I just needed to start httpd with -DSSL. SO I was being dumb. --- Glyn Astill <[EMAIL PROTECTED]> wrote: > Yes, I have SSLEngine On in ssl.conf, here's my ssl.conf file: > > SSLRandomSeed startup builtin > SSLRandomSeed connect builtin >

Re: Apache and mod_ssl - refusing connections on https?

2007-08-01 Thread Glyn Astill
nokeepalive ssl-unclean-shutdown \ downgrade-1.0 force-response-1.0 CustomLog /var/log/httpd/ssl_request_log \ "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" Any ideas? --- "Omar W. Hannet" <[EMAIL

Apache and mod_ssl - refusing connections on https?

2007-07-31 Thread Glyn Astill
Hi people, I'm new to this list, so hello. I've been trying to get https working with apache 2.0.59 on NetBSD 3.99 today, and it's beginning to make my face ache. Basically when I try to view a page via https I get connection refused. Apache is compiled with mod_ssl.c, I have openssl installed.