Hello,
I want to give some Users SSL connection to internal Lotus Quickr with a ReverseProxy (Apache 2.2).
Internet => Load Balancer => Reverse Proxy => Lotus Quickr
With http (port 80) everything works fine but if I redirect to https the internal Place Links always redirects to http.
I already made these changes to qpconfig:
-->
<cluster>
<master virtual="true" ssl="true">
<port>7443</port>
<hostname>www.domain.de</hostname>
<path_prefix></path_prefix>
</master>
</cluster>
<!--
On Domino, SSL is activated and TCP/IP Port status is "Redirect to SSL"
Apache config:
ProxyPass /
http://vquickr.uta.local/
ProxyPassReverse /
http://vquickr.uta.local/
ProxyPass /domcfg.nsf/
http://vquickr.uta.local/domcfg.nsf/
ProxyPassReverse /domcfg.nsf/
http://vquickr.uta.local/domcfg.nsf/
ProxyPass /icons/
http://vquickr.uta.local/icons/
ProxyPassReverse /icons/
http://vquickr.uta.local/icons/
ProxyPass /names.nsf
http://vquickr.uta.local/names.nsf
ProxyPassReverse /names.nsf
http://vquickr.uta.local/names.nsf
ProxyPass /LotusQuickr/
http://vquickr.uta.local/LotusQuickr/
ProxyPassReverse /LotusQuickr/
http://vquickr.uta.local/LotusQuickr/
ProxyPass /qphtml/
http://vquickr.uta.local/qphtml/
ProxyPassReverse /qphtml/
http://vquickr.uta.local/qphtml/
ProxyPass /servlet/
http://vquickr.uta.local/servlet/
ProxyPassReverse /servlet/
http://vquickr.uta.local/servlet/
ProxyPass /dm/
http://vquickr.uta.local/dm/
ProxyPassReverse /dm/
http://vquickr.uta.local/dm/
ProxyPass /domjs/
http://vquickr.uta.local/domjs/
ProxyPassReverse /domjs/
http://vquickr.uta.local/domjs/
Anyone can help me with this issue.