Apache with SSL Issue
am 08.03.2006 17:51:25 von Asad Habib
Hello. I am running Windows XP and I am trying to make Apache2 run with
mod_ssl. I have a certificate file and certificate key file in place but
when I run Apache I get the following error:
Syntax error on line 973 of C:/Program Files/Apache2/conf/httpd.conf
SSLCertificateFile: file 'C:/conf/ssl/servername.cert' does not exist or
is empty
The code for my virtual host directive is as follows:
SSLEngine On
SSLCertificateFile /conf/ssl/servername.cert
SSLCertificateKeyFile /conf/ssl/servername.key
I lot of folks have had similar problems as I found out through Google,
but I have not come across any viable solutions. Your help would be
appreciated. Thanks.
- Asad
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: Apache with SSL Issue
am 08.03.2006 17:57:56 von Kevin Smith
Well, I think as Apache2 is the root, you path is wrong for the
certificate file, as the error shows, you config should be as follows:
SSLEngine On
SSLCertificateFile conf/ssl/servername.cert
SSLCertificateKeyFile conf/ssl/servername.key
Regards,
Kevin
Asad Habib wrote:
> Hello. I am running Windows XP and I am trying to make Apache2 run
> with mod_ssl. I have a certificate file and certificate key file in
> place but when I run Apache I get the following error:
>
> Syntax error on line 973 of C:/Program Files/Apache2/conf/httpd.conf
> SSLCertificateFile: file 'C:/conf/ssl/servername.cert' does not exist
> or is empty
>
> The code for my virtual host directive is as follows:
>
>
> SSLEngine On
> SSLCertificateFile /conf/ssl/servername.cert
> SSLCertificateKeyFile /conf/ssl/servername.key
>
>
> I lot of folks have had similar problems as I found out through
> Google, but I have not come across any viable solutions. Your help
> would be appreciated. Thanks.
>
> - Asad
> ____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> User Support Mailing List modssl-users@modssl.org
> Automated List Manager majordomo@modssl.org
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: Apache with SSL Issue
am 08.03.2006 18:08:29 von Asad Habib
Hello. Thanks for your input. I have tried your suggestion already and it
yielded the same Syntax error as mentioned below and the
SSLCertificateFile error was as follows:
SSLCertificateFile: Invalid file path conf/ssl/servername.cert
- Asad
On Wed, 8 Mar 2006, Kevin Smith wrote:
> Well, I think as Apache2 is the root, you path is wrong for the certificate
> file, as the error shows, you config should be as follows:
>
>
> SSLEngine On
> SSLCertificateFile conf/ssl/servername.cert
> SSLCertificateKeyFile conf/ssl/servername.key
>
>
> Regards,
>
> Kevin
>
> Asad Habib wrote:
>> Hello. I am running Windows XP and I am trying to make Apache2 run with
>> mod_ssl. I have a certificate file and certificate key file in place but
>> when I run Apache I get the following error:
>>
>> Syntax error on line 973 of C:/Program Files/Apache2/conf/httpd.conf
>> SSLCertificateFile: file 'C:/conf/ssl/servername.cert' does not exist or is
>> empty
>>
>> The code for my virtual host directive is as follows:
>>
>>
>> SSLEngine On
>> SSLCertificateFile /conf/ssl/servername.cert
>> SSLCertificateKeyFile /conf/ssl/servername.key
>>
>>
>> I lot of folks have had similar problems as I found out through Google, but
>> I have not come across any viable solutions. Your help would be
>> appreciated. Thanks.
>>
>> - Asad
>> ____________________________________________________________ __________
>> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
>> User Support Mailing List modssl-users@modssl.org
>> Automated List Manager majordomo@modssl.org
>
> ____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> User Support Mailing List modssl-users@modssl.org
> Automated List Manager majordomo@modssl.org
>
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: Apache with SSL Issue
am 08.03.2006 18:14:05 von Kevin Smith
Probably the best think to do is add the absolute path to the files as:
SSLCertificateFile C:/Program Files/Apache2/conf/ssl/servername.cert
SSLCertificateKeyFile C:/Program Files/Apache2/conf/ssl/servername.key
The above paths are assumed to be correct.
Kevin
Asad Habib wrote:
> Hello. Thanks for your input. I have tried your suggestion already and
> it yielded the same Syntax error as mentioned below and the
> SSLCertificateFile error was as follows:
>
> SSLCertificateFile: Invalid file path conf/ssl/servername.cert
>
> - Asad
>
>
>
> On Wed, 8 Mar 2006, Kevin Smith wrote:
>
>> Well, I think as Apache2 is the root, you path is wrong for the
>> certificate file, as the error shows, you config should be as follows:
>>
>>
>> SSLEngine On
>> SSLCertificateFile conf/ssl/servername.cert
>> SSLCertificateKeyFile conf/ssl/servername.key
>>
>>
>> Regards,
>>
>> Kevin
>>
>> Asad Habib wrote:
>>> Hello. I am running Windows XP and I am trying to make Apache2 run
>>> with mod_ssl. I have a certificate file and certificate key file in
>>> place but when I run Apache I get the following error:
>>>
>>> Syntax error on line 973 of C:/Program Files/Apache2/conf/httpd.conf
>>> SSLCertificateFile: file 'C:/conf/ssl/servername.cert' does not
>>> exist or is empty
>>>
>>> The code for my virtual host directive is as follows:
>>>
>>>
>>> SSLEngine On
>>> SSLCertificateFile /conf/ssl/servername.cert
>>> SSLCertificateKeyFile /conf/ssl/servername.key
>>>
>>>
>>> I lot of folks have had similar problems as I found out through
>>> Google, but I have not come across any viable solutions. Your help
>>> would be appreciated. Thanks.
>>>
>>> - Asad
>>> ____________________________________________________________ __________
>>> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
>>> User Support Mailing List modssl-users@modssl.org
>>> Automated List Manager majordomo@modssl.org
>>
>> ____________________________________________________________ __________
>> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
>> User Support Mailing List modssl-users@modssl.org
>> Automated List Manager majordomo@modssl.org
>>
> ____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> User Support Mailing List modssl-users@modssl.org
> Automated List Manager majordomo@modssl.org
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: Apache with SSL Issue
am 08.03.2006 18:29:21 von Eckard Wille
Kevin Smith schrieb:
> Probably the best think to do is add the absolute path to the files as:
>
> SSLCertificateFile C:/Program Files/Apache2/conf/ssl/servername.cert
> SSLCertificateKeyFile C:/Program Files/Apache2/conf/ssl/servername.key
If this still does not work try to surround the path with " ", like this:
> SSLCertificateFile "C:/Program Files/Apache2/conf/ssl/servername.cert"
> SSLCertificateKeyFile "C:/Program Files/Apache2/conf/ssl/servername.key"
Or, even better, put the Apache on a spare unix/linux box. Configuring
apache/tomcat/mod_jk/whatever is more straightforward there than on a
windows box.
Greetings from Germany,
Eckard
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: Apache with SSL Issue
am 08.03.2006 18:37:04 von Asad Habib
Hi. Okay, I tried the absolute paths and now I am experiencing the
following error:
SSLCertificateFile takes one argument, SSL Server Certificate file
['/path/to/file/' - PEM or DER encoded]
What does this mean?
I also tried delimiting the paths with quotes but that yielded an invalid
file path error.
- Asad
On Wed, 8 Mar 2006, Kevin Smith wrote:
> Probably the best think to do is add the absolute path to the files as:
>
> SSLCertificateFile C:/Program Files/Apache2/conf/ssl/servername.cert
> SSLCertificateKeyFile C:/Program Files/Apache2/conf/ssl/servername.key
>
> The above paths are assumed to be correct.
>
> Kevin
>
> Asad Habib wrote:
>> Hello. Thanks for your input. I have tried your suggestion already and it
>> yielded the same Syntax error as mentioned below and the SSLCertificateFile
>> error was as follows:
>>
>> SSLCertificateFile: Invalid file path conf/ssl/servername.cert
>>
>> - Asad
>>
>>
>>
>> On Wed, 8 Mar 2006, Kevin Smith wrote:
>>
>>> Well, I think as Apache2 is the root, you path is wrong for the
>>> certificate file, as the error shows, you config should be as follows:
>>>
>>>
>>> SSLEngine On
>>> SSLCertificateFile conf/ssl/servername.cert
>>> SSLCertificateKeyFile conf/ssl/servername.key
>>>
>>>
>>> Regards,
>>>
>>> Kevin
>>>
>>> Asad Habib wrote:
>>>> Hello. I am running Windows XP and I am trying to make Apache2 run with
>>>> mod_ssl. I have a certificate file and certificate key file in place but
>>>> when I run Apache I get the following error:
>>>>
>>>> Syntax error on line 973 of C:/Program Files/Apache2/conf/httpd.conf
>>>> SSLCertificateFile: file 'C:/conf/ssl/servername.cert' does not exist or
>>>> is empty
>>>>
>>>> The code for my virtual host directive is as follows:
>>>>
>>>>
>>>> SSLEngine On
>>>> SSLCertificateFile /conf/ssl/servername.cert
>>>> SSLCertificateKeyFile /conf/ssl/servername.key
>>>>
>>>>
>>>> I lot of folks have had similar problems as I found out through Google,
>>>> but I have not come across any viable solutions. Your help would be
>>>> appreciated. Thanks.
>>>>
>>>> - Asad
>>>> ____________________________________________________________ __________
>>>> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
>>>> User Support Mailing List modssl-users@modssl.org
>>>> Automated List Manager majordomo@modssl.org
>>>
>>> ____________________________________________________________ __________
>>> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
>>> User Support Mailing List modssl-users@modssl.org
>>> Automated List Manager majordomo@modssl.org
>>>
>> ____________________________________________________________ __________
>> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
>> User Support Mailing List modssl-users@modssl.org
>> Automated List Manager majordomo@modssl.org
>
> ____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> User Support Mailing List modssl-users@modssl.org
> Automated List Manager majordomo@modssl.org
>
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: Apache with SSL Issue
am 08.03.2006 19:03:17 von Kevin Smith
Yep, as Eckard said, try surrounding the path with " ".
I know if you typed the cd command to get to the path C:/Program
Files/Apache2/conf/ssl/.cert in a Cmd DOS prompt, it would produce an
error. Surrounding the path with " " would then execute the cd command
successfully.
Regards,
Kevin
Eckard Wille wrote:
> Kevin Smith schrieb:
>
>> Probably the best think to do is add the absolute path to the files as:
>>
>> SSLCertificateFile C:/Program Files/Apache2/conf/ssl/servername.cert
>> SSLCertificateKeyFile C:/Program Files/Apache2/conf/ssl/servername.key
>>
>
> If this still does not work try to surround the path with " ", like this:
>
>
>> SSLCertificateFile "C:/Program Files/Apache2/conf/ssl/servername.cert"
>> SSLCertificateKeyFile "C:/Program Files/Apache2/conf/ssl/servername.key"
>>
>
> Or, even better, put the Apache on a spare unix/linux box. Configuring
> apache/tomcat/mod_jk/whatever is more straightforward there than on a
> windows box.
>
> Greetings from Germany,
> Eckard
> ____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> User Support Mailing List modssl-users@modssl.org
> Automated List Manager majordomo@modssl.org
>
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: Apache with SSL Issue
am 08.03.2006 20:50:02 von Kevin Smith
Ok, try the following 3 examples and let me know how it goes.
"C:\Program Files\Apache2\conf\servername.cert"
"C:\\Program Files\\Apache2\\conf\\servername.cert"
"C://Program Files//Apache2//conf//servername.cert"
Kevin
Asad Habib wrote:
> Hi Kevin. I already tried this but it did not work. I got an invalid
> file path error.
>
> - Asad
>
>
> On Wed, 8 Mar 2006, Kevin Smith wrote:
>
>> Yep, as Eckard said, try surrounding the path with " ".
>>
>> I know if you typed the cd command to get to the path C:/Program
>> Files/Apache2/conf/ssl/.cert in a Cmd DOS prompt, it would produce
>> an error. Surrounding the path with " " would then execute the cd
>> command successfully.
>>
>> Regards,
>>
>> Kevin
>>
>> Eckard Wille wrote:
>>> Kevin Smith schrieb:
>>>
>>>> Probably the best think to do is add the absolute path to the files
>>>> as:
>>>>
>>>> SSLCertificateFile C:/Program Files/Apache2/conf/ssl/servername.cert
>>>> SSLCertificateKeyFile C:/Program Files/Apache2/conf/ssl/servername.key
>>>>
>>>
>>> If this still does not work try to surround the path with " ", like
>>> this:
>>>
>>>
>>>> SSLCertificateFile "C:/Program
>>>> Files/Apache2/conf/ssl/servername.cert" SSLCertificateKeyFile
>>>> "C:/Program Files/Apache2/conf/ssl/servername.key"
>>>>
>>>
>>> Or, even better, put the Apache on a spare unix/linux box. Configuring
>>> apache/tomcat/mod_jk/whatever is more straightforward there than on a
>>> windows box.
>>>
>>> Greetings from Germany,
>>> Eckard
>>> ____________________________________________________________ __________
>>> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
>>> User Support Mailing List modssl-users@modssl.org
>>> Automated List Manager majordomo@modssl.org
>>>
>>
>> ____________________________________________________________ __________
>> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
>> User Support Mailing List modssl-users@modssl.org
>> Automated List Manager majordomo@modssl.org
>>
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: Apache with SSL Issue
am 08.03.2006 22:06:07 von Ken Schweigert
On Mar 8, 2006, at 2:50 PM, Kevin Smith wrote:
> Ok, try the following 3 examples and let me know how it goes.
>
> "C:\Program Files\Apache2\conf\servername.cert"
> "C:\\Program Files\\Apache2\\conf\\servername.cert"
> "C://Program Files//Apache2//conf//servername.cert"
>
> Kevin
>
> Asad Habib wrote:
>> Hi Kevin. I already tried this but it did not work. I got an
>> invalid file path error.
>>
>> - Asad
This is just a stab in the dark because I haven't been a Windows guy
for a long time now, but ... aren't Window's paths different because
of the long filenames? I seem to remember doing something similar
once and having to use a tilde. Something along the lines of:
C:\Program~1\Apache2\...
Hoping this helps.
-ken
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: Apache with SSL Issue
am 08.03.2006 22:08:25 von Asad Habib
Hi. I tried all of these but I am still receiving the same error.
- Asad
On Wed, 8 Mar 2006, Kevin Smith wrote:
> Ok, try the following 3 examples and let me know how it goes.
>
> "C:\Program Files\Apache2\conf\servername.cert"
> "C:\\Program Files\\Apache2\\conf\\servername.cert"
> "C://Program Files//Apache2//conf//servername.cert"
>
> Kevin
>
> Asad Habib wrote:
>> Hi Kevin. I already tried this but it did not work. I got an invalid file
>> path error.
>>
>> - Asad
>>
>>
>> On Wed, 8 Mar 2006, Kevin Smith wrote:
>>
>>> Yep, as Eckard said, try surrounding the path with " ".
>>>
>>> I know if you typed the cd command to get to the path C:/Program
>>> Files/Apache2/conf/ssl/.cert in a Cmd DOS prompt, it would produce an
>>> error. Surrounding the path with " " would then execute the cd command
>>> successfully.
>>>
>>> Regards,
>>>
>>> Kevin
>>>
>>> Eckard Wille wrote:
>>>> Kevin Smith schrieb:
>>>>
>>>>> Probably the best think to do is add the absolute path to the files
>>>>> as:
>>>>>
>>>>> SSLCertificateFile C:/Program Files/Apache2/conf/ssl/servername.cert
>>>>> SSLCertificateKeyFile C:/Program Files/Apache2/conf/ssl/servername.key
>>>>>
>>>>
>>>> If this still does not work try to surround the path with " ", like
>>>> this:
>>>>
>>>>
>>>>> SSLCertificateFile "C:/Program Files/Apache2/conf/ssl/servername.cert"
>>>>> SSLCertificateKeyFile "C:/Program
>>>>> Files/Apache2/conf/ssl/servername.key"
>>>>>
>>>>
>>>> Or, even better, put the Apache on a spare unix/linux box. Configuring
>>>> apache/tomcat/mod_jk/whatever is more straightforward there than on a
>>>> windows box.
>>>>
>>>> Greetings from Germany,
>>>> Eckard
>>>> ____________________________________________________________ __________
>>>> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
>>>> User Support Mailing List modssl-users@modssl.org
>>>> Automated List Manager majordomo@modssl.org
>>>>
>>>
>>> ____________________________________________________________ __________
>>> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
>>> User Support Mailing List modssl-users@modssl.org
>>> Automated List Manager majordomo@modssl.org
>>>
>
> ____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> User Support Mailing List modssl-users@modssl.org
> Automated List Manager majordomo@modssl.org
>
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: Apache with SSL Issue
am 08.03.2006 22:11:19 von wrowe
Eckard Wille wrote:
> Kevin Smith schrieb:
>
>>Probably the best think to do is add the absolute path to the files as:
>>
>>SSLCertificateFile C:/Program Files/Apache2/conf/ssl/servername.cert
>>SSLCertificateKeyFile C:/Program Files/Apache2/conf/ssl/servername.key
>
>
> If this still does not work try to surround the path with " ", like this:
>
>SSLCertificateFile "C:/Program Files/Apache2/conf/ssl/servername.cert"
>SSLCertificateKeyFile "C:/Program Files/Apache2/conf/ssl/servername.key"
Yup. Why do people confuse this issue with Windows? It's the same problem
as unix if you name your config path "/usr/apache/ssl keys/" Quote it.
:)
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: Apache with SSL Issue
am 08.03.2006 22:13:37 von dpgirago
Permissions?
> Hi. I tried all of these but I am still receiving the same error.
>
> - Asad
>
> On Wed, 8 Mar 2006, Kevin Smith wrote:
>>
>> Ok, try the following 3 examples and let me know how it goes.
>>
>> "C:\Program Files\Apache2\conf\servername.cert"
>> "C:\\Program Files\\Apache2\\conf\\servername.cert"
>> "C://Program Files//Apache2//conf//servername.cert"
>>
>> Kevin
>>
>> Asad Habib wrote:
>>> Hi Kevin. I already tried this but it did not work. I got an invalid
file
>>> path error.
>>>
>>> - Asad
...
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: Apache with SSL Issue
am 08.03.2006 22:22:52 von Asad Habib
Hi. Thanks for your input. By placing a tilde between Program and Files to
bridge the space, the path was recognized as a valid one when placed in
double quotes. However, the certificate is still inaccessible.
- Asad
On Wed, 8 Mar 2006, Ken Schweigert wrote:
> On Mar 8, 2006, at 2:50 PM, Kevin Smith wrote:
>
>> Ok, try the following 3 examples and let me know how it goes.
>>
>> "C:\Program Files\Apache2\conf\servername.cert"
>> "C:\\Program Files\\Apache2\\conf\\servername.cert"
>> "C://Program Files//Apache2//conf//servername.cert"
>>
>> Kevin
>>
>> Asad Habib wrote:
>>> Hi Kevin. I already tried this but it did not work. I got an invalid
>>> file path error.
>>>
>>> - Asad
>
> This is just a stab in the dark because I haven't been a Windows guy for a
> long time now, but ... aren't Window's paths different because of the long
> filenames? I seem to remember doing something similar once and having to
> use a tilde. Something along the lines of:
>
> C:\Program~1\Apache2\...
>
> Hoping this helps.
>
> -ken
> ____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> User Support Mailing List modssl-users@modssl.org
> Automated List Manager majordomo@modssl.org
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: Apache with SSL Issue
am 08.03.2006 22:23:09 von buz
If this is Win XP try looking at protections. Does Apache have the
right to read the file?
dpgirago@mdanderson.org wrote:
> Permissions?
>
>> Hi. I tried all of these but I am still receiving the same error.
>>
>> - Asad
>>
>
>> On Wed, 8 Mar 2006, Kevin Smith wrote:
>>> Ok, try the following 3 examples and let me know how it goes.
>>>
>>> "C:\Program Files\Apache2\conf\servername.cert"
>>> "C:\\Program Files\\Apache2\\conf\\servername.cert"
>>> "C://Program Files//Apache2//conf//servername.cert"
>>>
>>> Kevin
>>>
>>> Asad Habib wrote:
>>>> Hi Kevin. I already tried this but it did not work. I got an invalid
> file
>>>> path error.
>>>>
>>>> - Asad
>
> ...
>
>
> ____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> User Support Mailing List modssl-users@modssl.org
> Automated List Manager majordomo@modssl.org
>
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: Apache with SSL Issue
am 08.03.2006 22:24:28 von Asad Habib
Hello. I have modified permissions so that any user can access both the
cert and key file. Offcourse, I will change this once I get SSL running.
- Asad
On Wed, 8 Mar 2006, dpgirago@mdanderson.org wrote:
>
> Permissions?
>
>> Hi. I tried all of these but I am still receiving the same error.
>>
>> - Asad
>>
>
>> On Wed, 8 Mar 2006, Kevin Smith wrote:
>>>
>>> Ok, try the following 3 examples and let me know how it goes.
>>>
>>> "C:\Program Files\Apache2\conf\servername.cert"
>>> "C:\\Program Files\\Apache2\\conf\\servername.cert"
>>> "C://Program Files//Apache2//conf//servername.cert"
>>>
>>> Kevin
>>>
>>> Asad Habib wrote:
>>>> Hi Kevin. I already tried this but it did not work. I got an invalid
> file
>>>> path error.
>>>>
>>>> - Asad
>
> ...
>
>
> ____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> User Support Mailing List modssl-users@modssl.org
> Automated List Manager majordomo@modssl.org
>
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org