Hi,
I'm using a reverse proxy listeneing in the port 443 and sending the requests to the OBIEE server, which is listening in the port 80
<VirtualHost *:443>
ServerAdmin ******@****.com
ServerName myserver.mydomain.com
SSLEngine on
SSLCertificateKeyFile "C:/certs/parex_key.key"
SSLCertificateFile "C:/certs/parex_signed.crt"
ProxyPreserveHost On
ProxyPass /analytics/ http://192.168.1.16/analytics/
ProxyPassReverse /analytics/ http://192.168.1.16/analytics/
</VirtualHost>
I tried this config from Internet iwth this URL, and everythins works fine:
https://myserver.mydomain.com/analytics/saw.dll?bieehome
However, there is a problem with this one.
https://myserver.mydomain.com/analytics
It redirects automatically to the same URL but using not secue HTTP protocol.-> http://myserver.mydomain.com/analytics/saw.dll?bieehome
Any idea?