You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Junaid Arshad <rj...@gmail.com> on 2007/08/04 19:33:57 UTC

[users@httpd] Problem with SSL

Hi,

I am trying to get https enabled on my apache server on RH linux which
is apache2.0.59. The servers starts without any errors but when I try
to browse it using firefox, a dialog box with an error appears saying
that "myserver has sent an incorrect or unexpected message
error:-12263"

can anyone please help....

cheers

junaid

---------------------------------------------------------------------
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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Problem with SSL

Posted by "Tom Ray [Lists]" <li...@blazestudios.com>.
Junaid Arshad wrote:
> Hi,
>
> --Thanks, just one last thing..:-)
>
>   
>> and you'll need the path to the openssl stuff.
>>     
>
> Does this mean that I have to set some parameter to the path to
> openssl or I just need the path to openssl to generate my certificates
> and keys...
>
> cheers
>
> junaid
>
>   
It would be --with-ssl=/usr/local/openssl/ssl or what ever your path is. 
Check out http://httpd.apache.org/docs/2.0/programs/configure.html for 
more configure line help. You set the path to your certs and keys in the 
ssl-vhost containers.


---------------------------------------------------------------------
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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Problem with SSL

Posted by Junaid Arshad <rj...@gmail.com>.
Hi,

--Thanks, just one last thing..:-)

>and you'll need the path to the openssl stuff.

Does this mean that I have to set some parameter to the path to
openssl or I just need the path to openssl to generate my certificates
and keys...

cheers

junaid

On 8/4/07, Tom Ray [Lists] <li...@blazestudios.com> wrote:
> Junaid Arshad wrote:
> > Hi,
> >
> > Yes, I have OpenSSL installed and also have .key and .crt  files at
> > the correct place. I am not an administrator on this machine and only
> > have root privileges on apache tree so don't exactly know if apache
> > was installed with --enable-ssl option. I used "httpd -l" to get a
> > list of compiled modules and it DOES NOT show mod_ssl.so. Does this
> > mean that apache was not compiled with mod_ssl???
> >
> Yup, Apache needs to be re-compiled using --enable-ssl and you'll need
> the path to the openssl stuff.
> > To specify the SSL configuration, I use <IfModule mod_ssl> rather than
> > <IfDefine SSL> which allows to me use ./apachectl startssl rather than
> > to specify -DSSL flag...
> >
> >
> startssl is old, you should be using -DSSL
> > I looked at the error logs and found that, I have the following error
> > "Invalid method in request \x80=\x01\x03". After this I also checked
> > my ssl.conf and found that I do have "SSLEngine on" in the virtual
> > host but  My guess is that there is some problem with SSLEngine which
> > causes https requests to be dealt by http causing an error....
> >
> >
> That error happens when Apache isn't running with the SSL. When you type
> in HTTPS you're making an invalid request method.
> > Your thoughts on this please...:-)
> >
> > cheers
> >
> > junaid
> >
> >
> >> OK the big questions. Do you have OpenSSL installed? Did you compile
> >> Apache with mod_ssl? Do you have the .key and .crt files in the correct
> >> place on the server? Did you start apache with the -DSSL flag?
> >>
> >> ---------------------------------------------------------------------
> >> 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
> >>    "   from the digest: users-digest-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
>    "   from the digest: users-digest-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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Rewriting Subdomains to folders

Posted by Joshua Slive <jo...@slive.ca>.
On 8/8/07, Samuel Vogel <sa...@gmx.de> wrote:
> This is how my vHost looks like now:
>
> <VirtualHost *>
>         ServerName samy.newkilu.de
>         ServerAlias *.samy.newkilu.de
>
>         DocumentRoot /data/apache/samy/www
>
>         RewriteEngine On
>         RewriteCond %{HTTP_HOST} !^www\.
>         RewriteCond %{HTTP_HOST} ^([^.]+)\.samy\.newkilu\.de
>         RewriteRule ^(.*)$  %1/$1 [L]
> </VirtualHost>
>
> All it gives me is "Bad Request". I don't understand this, since I got
> it to work in .htaccess with using " %{ENV:REDIRECT_STATUS} ="" ". What
> am I doing wrong in my vHost config?

You're rewriting to a path without a leading slash. Try
RewriteRule ^(.*)$  /%1/$1 [L]
Or try
RewriteRule ^(.*)$  /data/apache/samy/www/%1/$1 [L]

---------------------------------------------------------------------
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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Rewriting Subdomains to folders

Posted by Samuel Vogel <sa...@gmx.de>.
This is how my vHost looks like now:

<VirtualHost *>
        ServerName samy.newkilu.de
        ServerAlias *.samy.newkilu.de
       
        DocumentRoot /data/apache/samy/www
       
        RewriteEngine On
        RewriteCond %{HTTP_HOST} !^www\.
        RewriteCond %{HTTP_HOST} ^([^.]+)\.samy\.newkilu\.de
        RewriteRule ^(.*)$  %1/$1 [L]
</VirtualHost>

All it gives me is "Bad Request". I don't understand this, since I got 
it to work in .htaccess with using " %{ENV:REDIRECT_STATUS} ="" ". What 
am I doing wrong in my vHost config?

Regards,
Samy

---------------------------------------------------------------------
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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Rewriting Subdomains to folders

Posted by Samuel Vogel <sa...@gmx.de>.
I can, I was just doing it in in .htaccess to ease things up for testing...
This is how my rewriting looks right now:

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteCond %{HTTP_HOST} ^([^.]+)\.samy\.newkilu\.de
RewriteRule ^(.*)$  %1/$1 [L]

What do you propose?
Another question: I have many 50+ vHosts. Do I have to add the rewriting 
to every vHost or is it also valid if I put the rewriting into the 
Directory-clause of the Directory containing the DocRoots of the vHosts?

Regards,
Samy

Joshua Slive schrieb:
> On 8/7/07, Samuel Vogel <sa...@gmx.de> wrote:
>   
>> Doing this I get maximum rewrites exceeded.
>> I know what the problem is, but I don't know how to fix it.
>> I need a RewriteCond that checks if the sub-subdomain is allready
>> appended to the url.
>> So the rewriting needs to stop if the rewritten URL is
>> "shop.samy.newkilu.de/shop". But right now /shop is appended 10 times
>> until the maximum redirects is exceeded...
>>
>> How can I do this?
>>     
>
> If you can put the config in httpd.conf, then this vastly simplifies
> things. Otherwise, this bug report mentions some work-arounds:
> http://issues.apache.org/bugzilla/show_bug.cgi?id=40004
>
> Joshua.
>
> ---------------------------------------------------------------------
> 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
>    "   from the digest: users-digest-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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Rewriting Subdomains to folders

Posted by Joshua Slive <jo...@slive.ca>.
On 8/7/07, Samuel Vogel <sa...@gmx.de> wrote:
> Doing this I get maximum rewrites exceeded.
> I know what the problem is, but I don't know how to fix it.
> I need a RewriteCond that checks if the sub-subdomain is allready
> appended to the url.
> So the rewriting needs to stop if the rewritten URL is
> "shop.samy.newkilu.de/shop". But right now /shop is appended 10 times
> until the maximum redirects is exceeded...
>
> How can I do this?

If you can put the config in httpd.conf, then this vastly simplifies
things. Otherwise, this bug report mentions some work-arounds:
http://issues.apache.org/bugzilla/show_bug.cgi?id=40004

Joshua.

---------------------------------------------------------------------
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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Rewriting Subdomains to folders

Posted by Samuel Vogel <sa...@gmx.de>.
Doing this I get maximum rewrites exceeded.
I know what the problem is, but I don't know how to fix it.
I need a RewriteCond that checks if the sub-subdomain is allready 
appended to the url.
So the rewriting needs to stop if the rewritten URL is 
"shop.samy.newkilu.de/shop". But right now /shop is appended 10 times 
until the maximum redirects is exceeded...

How can I do this?

Joshua Slive schrieb:
> On 8/6/07, Samuel Vogel <sa...@gmx.de> wrote:
>   
>> Hey, this is my best guess:
>>
>> RewriteEngine On
>> RewriteCond %{HTTP_HOST} !^www\.
>> RewriteCond %{HTTP_HOST} ^([^.]+)\.samy\.newkilu\.de
>> RewriteRule ^/(.*)$  %1/$1 [L]
>>
>> But somehow this doesn't do anything... What am I doing wrong?
>> I'm trying to rewrite "sub-sub"-domains to the appropriate folder.
>>     
>
> Where are you placing this in the config? If it is in an .htaccess
> file, then you need to drop the leading slash from the pattern in the
> RewriteRule.
>
> Joshua.
>
> ---------------------------------------------------------------------
> 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
>    "   from the digest: users-digest-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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Rewriting Subdomains to folders

Posted by Joshua Slive <jo...@slive.ca>.
On 8/6/07, Samuel Vogel <sa...@gmx.de> wrote:
> Hey, this is my best guess:
>
> RewriteEngine On
> RewriteCond %{HTTP_HOST} !^www\.
> RewriteCond %{HTTP_HOST} ^([^.]+)\.samy\.newkilu\.de
> RewriteRule ^/(.*)$  %1/$1 [L]
>
> But somehow this doesn't do anything... What am I doing wrong?
> I'm trying to rewrite "sub-sub"-domains to the appropriate folder.

Where are you placing this in the config? If it is in an .htaccess
file, then you need to drop the leading slash from the pattern in the
RewriteRule.

Joshua.

---------------------------------------------------------------------
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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Rewriting Subdomains to folders

Posted by Samuel Vogel <sa...@gmx.de>.
Hey, this is my best guess:

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteCond %{HTTP_HOST} ^([^.]+)\.samy\.newkilu\.de
RewriteRule ^/(.*)$  %1/$1 [L]

But somehow this doesn't do anything... What am I doing wrong?
I'm trying to rewrite "sub-sub"-domains to the appropriate folder.

Regards,
Samy

Joshua Slive schrieb:
> On 8/4/07, Samuel Vogel <sa...@gmx.de> wrote:
>   
>> I forgot to specify what i want/need.
>> I want to specifically know how the mod_rewrite solution works, because
>> I don't see how I can user the subdomain from RewriteCond in the
>> RewriteRule statement...
>>     
>
> This example shows one way to do it:
> http://httpd.apache.org/docs/2.2/vhosts/mass.html#homepages.rewrite
>
> In general, you use back-references to extract matches from
> RewriteCond's. The first match would be %1, the second %2, etc. See
> the RewriteRule docs.
>
> If you want more help, post your best guess at the correct config
> along with details on what you want it to do and what it is actually
> doing.
>
> Joshua.
>
> ---------------------------------------------------------------------
> 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
>    "   from the digest: users-digest-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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Rewriting Subdomains to folders

Posted by Joshua Slive <jo...@slive.ca>.
On 8/4/07, Samuel Vogel <sa...@gmx.de> wrote:
> I forgot to specify what i want/need.
> I want to specifically know how the mod_rewrite solution works, because
> I don't see how I can user the subdomain from RewriteCond in the
> RewriteRule statement...

This example shows one way to do it:
http://httpd.apache.org/docs/2.2/vhosts/mass.html#homepages.rewrite

In general, you use back-references to extract matches from
RewriteCond's. The first match would be %1, the second %2, etc. See
the RewriteRule docs.

If you want more help, post your best guess at the correct config
along with details on what you want it to do and what it is actually
doing.

Joshua.

---------------------------------------------------------------------
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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Rewriting Subdomains to folders

Posted by Samuel Vogel <sa...@gmx.de>.
I forgot to specify what i want/need.
I want to specifically know how the mod_rewrite solution works, because 
I don't see how I can user the subdomain from RewriteCond in the 
RewriteRule statement...

Joshua Slive schrieb:
> On 8/4/07, Samuel Vogel <sa...@gmx.de> wrote:
>   
>> What would be the best way to rewrite sub.domain.com to /sub while using
>> a wildcard?
>> I know how to do it on a per subdomain basis, but is there a way to do
>> this for all subdomains (except www) to the folder name ?
>>     
>
> Either mod_vhost_alias or mod_rewrite. See:
> http://httpd.apache.org/docs/2.2/vhosts/mass.html
>
> Joshua.
>
> ---------------------------------------------------------------------
> 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
>    "   from the digest: users-digest-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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Rewriting Subdomains to folders

Posted by Joshua Slive <jo...@slive.ca>.
On 8/4/07, Samuel Vogel <sa...@gmx.de> wrote:
> What would be the best way to rewrite sub.domain.com to /sub while using
> a wildcard?
> I know how to do it on a per subdomain basis, but is there a way to do
> this for all subdomains (except www) to the folder name ?

Either mod_vhost_alias or mod_rewrite. See:
http://httpd.apache.org/docs/2.2/vhosts/mass.html

Joshua.

---------------------------------------------------------------------
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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


[users@httpd] Rewriting Subdomains to folders

Posted by Samuel Vogel <sa...@gmx.de>.
What would be the best way to rewrite sub.domain.com to /sub while using 
a wildcard?
I know how to do it on a per subdomain basis, but is there a way to do 
this for all subdomains (except www) to the folder name ?

Thanks,
Samy

---------------------------------------------------------------------
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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Problem with SSL

Posted by "Tom Ray [Lists]" <li...@blazestudios.com>.
Junaid Arshad wrote:
> Hi,
>
> Yes, I have OpenSSL installed and also have .key and .crt  files at
> the correct place. I am not an administrator on this machine and only
> have root privileges on apache tree so don't exactly know if apache
> was installed with --enable-ssl option. I used "httpd -l" to get a
> list of compiled modules and it DOES NOT show mod_ssl.so. Does this
> mean that apache was not compiled with mod_ssl???
>   
Yup, Apache needs to be re-compiled using --enable-ssl and you'll need 
the path to the openssl stuff.
> To specify the SSL configuration, I use <IfModule mod_ssl> rather than
> <IfDefine SSL> which allows to me use ./apachectl startssl rather than
> to specify -DSSL flag...
>
>   
startssl is old, you should be using -DSSL
> I looked at the error logs and found that, I have the following error
> "Invalid method in request \x80=\x01\x03". After this I also checked
> my ssl.conf and found that I do have "SSLEngine on" in the virtual
> host but  My guess is that there is some problem with SSLEngine which
> causes https requests to be dealt by http causing an error....
>
>   
That error happens when Apache isn't running with the SSL. When you type 
in HTTPS you're making an invalid request method.
> Your thoughts on this please...:-)
>
> cheers
>
> junaid
>
>   
>> OK the big questions. Do you have OpenSSL installed? Did you compile
>> Apache with mod_ssl? Do you have the .key and .crt files in the correct
>> place on the server? Did you start apache with the -DSSL flag?
>>
>> ---------------------------------------------------------------------
>> 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
>>    "   from the digest: users-digest-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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Problem with SSL

Posted by Junaid Arshad <rj...@gmail.com>.
Hi,

Yes, I have OpenSSL installed and also have .key and .crt  files at
the correct place. I am not an administrator on this machine and only
have root privileges on apache tree so don't exactly know if apache
was installed with --enable-ssl option. I used "httpd -l" to get a
list of compiled modules and it DOES NOT show mod_ssl.so. Does this
mean that apache was not compiled with mod_ssl???

To specify the SSL configuration, I use <IfModule mod_ssl> rather than
<IfDefine SSL> which allows to me use ./apachectl startssl rather than
to specify -DSSL flag...

I looked at the error logs and found that, I have the following error
"Invalid method in request \x80=\x01\x03". After this I also checked
my ssl.conf and found that I do have "SSLEngine on" in the virtual
host but  My guess is that there is some problem with SSLEngine which
causes https requests to be dealt by http causing an error....

Your thoughts on this please...:-)

cheers

junaid

> OK the big questions. Do you have OpenSSL installed? Did you compile
> Apache with mod_ssl? Do you have the .key and .crt files in the correct
> place on the server? Did you start apache with the -DSSL flag?
>
> ---------------------------------------------------------------------
> 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
>    "   from the digest: users-digest-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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Problem with SSL

Posted by "Tom Ray [Lists]" <li...@blazestudios.com>.
Junaid Arshad wrote:
> Hi,
>
> I am trying to get https enabled on my apache server on RH linux which
> is apache2.0.59. The servers starts without any errors but when I try
> to browse it using firefox, a dialog box with an error appears saying
> that "myserver has sent an incorrect or unexpected message
> error:-12263"
>
> can anyone please help....
>
> cheers
>
> junaid
>
>   
OK the big questions. Do you have OpenSSL installed? Did you compile 
Apache with mod_ssl? Do you have the .key and .crt files in the correct 
place on the server? Did you start apache with the -DSSL flag?

---------------------------------------------------------------------
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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org