logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: Apache 5.5 not responding to SSL but does to port 443
Author
tpagolfnut



Joined: 23 Jun 2011
Posts: 1

PostPosted: Thu 23 Jun '11 2:54    Post subject: Apache 5.5 not responding to SSL but does to port 443 Reply with quote

I have a Windows 2003 server running Apache 5.5. I have installed SSL certs and am trying to get SSL working. The webserver responds on port 443 but not SSL. For example: http://mywebsite:443 works but https://mywebsite doesn't. Here is the connector information in the server.xml.
Code:

<!--
    <Connector port="8080" maxHttpHeaderSize="8192"
               maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
               enableLookups="false" redirectPort="443" acceptCount="100"
               connectionTimeout="20000" disableUploadTimeout="true" />
    -->
    <!--
    <Connector port="80" maxHttpHeaderSize="8192"
               maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
               enableLookups="false" redirectPort="443" acceptCount="100"
               connectionTimeout="20000" disableUploadTimeout="true" />
    -->

    <!-- Define a SSL HTTP/1.1 Connector on port 443 -->
    <Connector port="443" SSLEnabled="true"
               maxThreads="150" minSpareThreads="15" maxSpareThreads="45"
               scheme="https" secure="true" acceptCount="100"
               keystoreFile=/conf/keystore
         keystorePass="********" clientAuth="false" sslProtocol="TLS" />
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7301
Location: Germany, Next to Hamburg

PostPosted: Thu 23 Jun '11 11:01    Post subject: Reply with quote

You haven't defined any protocol. See http://tomcat.apache.org/tomcat-5.5-doc/ssl-howto.html#Edit_the_Tomcat_Configuration_File

Why are you still using 5.5? I've tried 7 and it is a lot faster.
Back to top
somnang



Joined: 08 Apr 2011
Posts: 61

PostPosted: Fri 24 Jun '11 3:46    Post subject: Reply with quote

um.... sorry to burst your bubble... but I think the highest version of Apache is 2.2... Perhaps you want to say Tomcat?
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7301
Location: Germany, Next to Hamburg

PostPosted: Fri 24 Jun '11 9:39    Post subject: Reply with quote

somnang wrote:
um.... sorry to burst your bubble... but I think the highest version of Apache is 2.2... Perhaps you want to say Tomcat?


of cause it is Tomcat:wink: . To be correct: What you call apache is named httpd Wink
Back to top
somnang



Joined: 08 Apr 2011
Posts: 61

PostPosted: Fri 24 Jun '11 13:19    Post subject: Reply with quote

Smile yeah I gotcha.. but the OP was not clear. Just wanna make sure we are all at the same page in history lol
Back to top


Reply to topic   Topic: Apache 5.5 not responding to SSL but does to port 443 View previous topic :: View next topic
Post new topic   Forum Index -> Apache