Re: Autostart apache /w mod_ssl from init.d ?

2001-09-11 Thread Alex Pircher
Simply do not create a PEM pass phrase, when you compile Apache. Greetings, Alex --- Dave [EMAIL PROTECTED] schrieb: Hello, I am new to this mailing list, and I have browsed through the mail archives and I can't seem to find an answer y/n to my question. I run Debian 2.2 and I have

Re: http Standards

2001-09-07 Thread Alex Pircher
You find nearly all what you need at w3.org! HTTP 1.1: http://www.w3.org/Protocols/rfc2616/rfc2616.html GreetingX, Alex --- Alan Kong [EMAIL PROTECTED] schrieb: Hi, This is may not relate to this list. I am looking for the rfc's on http protocol. I know where to find http 1.0 which is

Re: POST method with client authentication

2001-09-07 Thread Alex Pircher
Is this a ModSSL-Question? In Apache there is a directive called Limit where you can allow or disallow GET, POST, HEAD, ... As the Credentials are sent to .../examine.pl, because you have authenticated yourself successfully at .../private/, there should be no problem! GreetingX, Alex ---

Re: Did it pass?

2001-09-06 Thread Alex Pircher
That's the chicken and egg problem, you need a different IP for each SSL-based VirtualHost: http://www.modssl.org/docs/2.8/ssl_faq.html#ToC47 GreetingX, Alex --- Aage Baardsen [EMAIL PROTECTED] schrieb: I am not sure if my message passed through the mailing list. Thats why i post it again.

Re: Did it pass?

2001-09-06 Thread Alex Pircher
I've done it too with one IP, BUT this only works with Subdomains and Wildcard-Certificates! GreetingX, Alex --- Are Hoel [EMAIL PROTECTED] schrieb: At 10:28 06.09.2001 +0200, you wrote: That's the chicken and egg problem, you need a different IP for each SSL-based VirtualHost:

Re: Serving HTTP HTTPS in one VHost-Config?

2001-09-05 Thread Alex Pircher
But this will only work, if you have one VirtualHost! GreetingX, Alex --- Charles Kathryn Brown [EMAIL PROTECTED] schrieb: From the httpd.conf file: ### Section 2: 'Main' server configuration # # The directives in this section set up the values used by the 'main' #

Re: How Can I enable IDEA and RC2 ciphers?

2001-09-04 Thread Alex Pircher
Maybe you've compiled openssl with the 'no-idea'-flag, as I did, because IDEA is patended in USA, Europe, ... Greetings, Alex --- Rajidhar Etta [EMAIL PROTECTED] schrieb: Hi all, We have the following platform ( Oracle HTTP server: part of Oracle iAS 9i) ---Apache/1.3.12 (Unix)

Where to place Configuration-Parts (was: Re: Problem serving to some browsers)

2001-08-31 Thread Alex Pircher
--- Cliff Woolley [EMAIL PROTECTED] schrieb: On Thu, 30 Aug 2001, James W.Blackwell wrote: I've had several people report problems with the secure side of the site. Usually it's that images are not being served on secure pages. Sometimes a couple of the images come through but not all

Re: Apache and mod_ssl

2001-08-23 Thread Alex Pircher
We do need 2 Virtual Host-Directives for HTTP HTTPS (as we talked about this in this list before). So it's simpler to just to use: Redirect / https://%(HTTP_HOST)/ This needs the mod_alias which is compiled in by default. GreetingX, Alex --- ___cliff rayman___ [EMAIL PROTECTED] schrieb: if

RE: Re: Importing Self-signed CA into Netscape Browser

2001-08-22 Thread Alex Pircher
??? Thanks, Alex. George Alex Pircher [EMAIL PROTECTED] wrote: Can you provide the URL of loadcacert.cgi? If SSL is enabled the mime-type for certificates is ordinary correctly set in the httpd.conf. So actually you don't need loadcacert.cgi, you just have to point your Browser

Re: Importing Self-signed CA into Netscape Browser

2001-08-21 Thread Alex Pircher
Can you provide the URL of loadcacert.cgi? If SSL is enabled the mime-type for certificates is ordinary correctly set in the httpd.conf. So actually you don't need loadcacert.cgi, you just have to point your Browser to the URL of the certificate. This worked for me without problems.

Re: Serving HTTP HTTPS in one VHost-Config?

2001-08-17 Thread Alex Pircher
--- Thomas Binder [EMAIL PROTECTED] schrieb: Hi! On Thu, Aug 16, 2001 at 02:15:09PM +0200, Owen Boyle wrote: [Both hosts with the same content] The only simple way is with two VHs with the same DocumentRoot - even though it violates the Prime Directive (which is: Never Define

Re: Serving HTTP HTTPS in one VHost-Config?

2001-08-17 Thread Alex Pircher
... All the guy was trying to do was have two VHs running off the same DocumentRoot. Now we all know you can do this with two DocumentRoot directives pointing to the same directory but that violates the Prime Directive (which is: Never Define Anything Twice). As long as we're

Serving HTTP HTTPS in one VHost-Config?

2001-08-16 Thread Alex Pircher
Is it possible to serve HTTP HTTPS within one Virtual Host- Configuration? NameVirtualHost 123.123.123.123:80 NameVirtualHost 123.123.123.123:443 VirtualHost www.domain.com:80 www.domain.com:443 ServerName www.domain.com SSLEngine on SSLCertificateFile /.../server.crt SSLCertificateKeyFile

Re: Serving HTTP HTTPS in one VHost-Config?

2001-08-16 Thread Alex Pircher
Is it possible to serve HTTP HTTPS within one Virtual Host- Configuration? NameVirtualHost 123.123.123.123:80 NameVirtualHost 123.123.123.123:443 VirtualHost www.domain.com:80 www.domain.com:443 ServerName www.domain.com SSLEngine on SSLCertificateFile /.../server.crt

Re: Serving HTTP HTTPS in one VHost-Config?

2001-08-16 Thread Alex Pircher
--- Owen Boyle [EMAIL PROTECTED] wrote: OK. So only NameVirtualhost 123.123.123.123 You'll still get a warning with this. To be absolutely safe, use: NameVirtualhost 123.123.123.123:80 Then you can have as many NBVHs as you like on port 80 and exactly one SSL VH on port 443.

Re: Serving HTTP HTTPS in one VHost-Config?

2001-08-16 Thread Alex Pircher
--- Mads Toftum [EMAIL PROTECTED] schrieb: On Thu, Aug 16, 2001 at 01:48:33PM +0100, [EMAIL PROTECTED] wrote: One of Ralf's slides from ApacheCon 2000 has a rewrite rule to do this. I've wanted to implement it for some time, but I couldn't figure it out!