I'm having a problem where <cflocation url="(relative path)" />
automatically swaps me from https to http protocol. I have the
latest OpenbdJAM stack installed. We've implemented SSL by adding the
following Virtual Hosts in our httpd.conf file...
Listen 80
Listen 443
<VirtualHost *:80>
ServerName www.ourservername.com
DocumentRoot /opt/openbdjam/webroot
</VirtualHost>
<VirtualHost *:443>
SSLEngine on
ServerName www.ourservername.com
DocumentRoot /opt/openbdjam/webroot
RequestHeader set X-Forwarded-Proto "https"
SSLCertificateFile /pathToCert.cert
SSLCertificateKeyFile /pathToKey.key
SSLCACertificateFile /pathToCA
</VirtualHost>
My first suspicion is that since Apache and Jetty are communicating across
normal http, Jetty assumes when building <cflocation> that http is the
current protocol. Can anyone confirm or dispute my suspicion and/or offer
a work-around? We do not have this problem on another server that uses
proxying in the Apache virtual hosts to direct different protocols to
different directories, but we were trying to avoid such proxying in this
build in order to reduce complexity and hopefully resolve some connection
issues we've been having.
--
--
online documentation: http://openbd.org/manual/
http://groups.google.com/group/openbd?hl=en
---
You received this message because you are subscribed to the Google Groups "Open
BlueDragon" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.