Title: Message
No matter what I do, I can't seem to connect via https.
I keep getting the error:
[Wed Oct 17 07:02:10 2001] [error] [client 66.65.3.10] Invalid method in request
t ˆˆ
From what I have read, this means that I am trying to talk https on a port that only speaks http.
 
I have tried everything that I can think of.
 
I have commented out the virtual servers.
That did nothing.
I put them back in, then I read something about putting an sslengine on directive in the virtual hosts, so I did that.
Same thing.
This is apache 1.3.22 on a sparc/Solaris 7 box.
Here's what's in the conf.
 
Main section:
# Support for Random Seed Generation
#
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
 
#
# Port: The port to which the standalone server listens. For
# ports < 1023, you will need httpd to be run as root initially.
#
Port 80
 
##
##  SSL Support
##
##  When we also provide SSL we have to listen to the
##  standard HTTP port (see above) and to the HTTPS port
##
<IfDefine SSL>
Listen 80
Listen 443
</IfDefine>
#
 
<VirtualHost 66.65.3.10:80>
    ScriptAlias /cgi-bin/ "/export/apache/877baskets/cgi-bin/"
   
    <Directory "/export/apache/877baskets/cgi-bin/">
    AllowOverride All
    Options None
    Order allow,deny
    Allow from all
    </Directory>
   
    ServerAdmin [EMAIL PROTECTED]
    DocumentRoot /export/apache/877baskets
    ServerName www.877baskets.com
    ErrorLog logs/877baskets.com-error_log
    CustomLog logs/87baskets.com-access_log common
    TransferLog logs/877baskets.com-access_log
</VirtualHost>
 
<VirtualHost 66.65.3.10:443>
    ScriptAlias /cgi-bin/ "/export/apache/877baskets/cgi-bin/"
   
    <Directory "/export/apache/877baskets/cgi-bin/">
    AllowOverride All
    Options None
    Order allow,deny
    Allow from all
    </Directory>
   
    ServerAdmin [EMAIL PROTECTED]
    DocumentRoot /export/apache/877baskets
    ServerName www.877baskets.com
    ErrorLog logs/877baskets.com-error_log
    CustomLog logs/87baskets.com-access_log common
    TransferLog logs/877baskets.com-access_log
    SSLEngine On
</VirtualHost>
Any ideas?
 
Thanks in advance
 
Scott

Reply via email to