Author |
|
tpagolfnut
Joined: 23 Jun 2011 Posts: 1
|
Posted: Thu 23 Jun '11 2:54 Post subject: Apache 5.5 not responding to SSL but does to port 443 |
|
|
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: 7371 Location: Germany, Next to Hamburg
|
|
Back to top |
|
somnang
Joined: 08 Apr 2011 Posts: 61
|
Posted: Fri 24 Jun '11 3:46 Post subject: |
|
|
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: 7371 Location: Germany, Next to Hamburg
|
Posted: Fri 24 Jun '11 9:39 Post subject: |
|
|
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 |
|
Back to top |
|
somnang
Joined: 08 Apr 2011 Posts: 61
|
Posted: Fri 24 Jun '11 13:19 Post subject: |
|
|
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 |
|