I was working fine with openerp v7 over SSL, but when i merged to V8, SSL is not working any more: it's automatically redirected to http
this is my apache configuration for the V7:
<VirtualHost *:443>
ProxyPreserveHost On
Servername crm.impactcontact.tn
ServerAdmin Admin
ProxyPass / http://192.168.x.x:8072/
ProxyPassReverse / http://192.168.x.x:8072/
SSLEngine on
SSLCertificateFile /etc/pki/tls/certs/squid.crt
SSLCertificateKeyFile /etc/pki/tls/certs/squid.key
</VirtualHost>
I also used:
<VirtualHost *:443>
ProxyPreserveHost On
Servername crm.impactcontact.tn
ServerAdmin Admin
ProxyPass / http://192.168.x.x:8072/
<Location />
ProxyPassReverse /
</Location>
SSLEngine on
SSLCertificateFile /etc/pki/tls/certs/localhost.crt
SSLCertificateKeyFile /etc/pki/tls/private/localhost.key
RequestHeader set “X-Forwarded-Proto” “https”
SetEnv proxy-nokeepalive 1
</VirtualHost>
But, it still not working, any ideas
Thanks