Making sure links do not redirect away from https

Version 1 by NotSupportContact-Mark Carey
on Sep 16, 2010 10:54.

compared with
Current by NotSupportContact-Mark Carey
on Jan 20, 2011 09:39.

Key
This line was removed.
This word was removed. This word was added.
This line was added.

Changes (8)

View Page History
h2. Solution

You will need to uncomment the section for the SSL HTTP/1.1 connector in the server.xml by removing the <\!\-\- and \-\-> from before and after the connector. Then you need to add the following settings to the default new connector setting in the server.xml:
{code}
scheme="https" proxyName="GWOSMEE-HOSTNAME" proxyPort="443"
{code}


{code:title=/usr/local/groundwork/foundation/container/webapps/jboss/jboss-web.deployer/server.xml}
<Connector port="8080" address="${jboss.bind.address}"
maxThreads="250" maxHttpHeaderSize="8192"
emptySessionPath="true" protocol="HTTP/1.1"
<!-- Define a SSL HTTP/1.1 Connector on port 8443
This connector uses the JSSE configuration, when using APR, the
connector should be using the OpenSSL style configuration
described in the APR documentation -->
enableLookups="false" redirectPort="8443" acceptCount="100" <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
connectionTimeout="20000" disableUploadTimeout="true"
scheme="https" proxyName="GWOSMEE-HOSTNAME" proxyPort="443"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
proxyName="GWOSMEE-HOSTNAME" proxyPort="443"
/>
{code}