In OpenERP 7 ubuntu SSL Connection:-
  <VirtualHost *:443>
     ServerAdmin webmaster@localhost
     ServerName erp.openerp.com
     SSLEngine on
     SSLCertificateFile /etc/apache2/ssl/server.crt
     SSLCertificateKeyFile /etc/apache2/ssl/server.key
     ProxyRequests Off
     <Proxy *>
     Order deny,allow
     Allow from all
     </Proxy>
      ProxyVia On
      ProxyPass / http://192.168.20.60:80/
    <location / >
      ProxyPassReverse /
     </location>
     ProxyPassReverse /  http://192.168.20.60:80/
     RequestHeader set "X-Forwarded-Proto" "https"
     # Fix IE problem (httpapache proxy dav error 408/409)
     SetEnv proxy-nokeepalive 1
  </VirtualHost>
In the web browser typed https://ServerName It show message It Works! but no content has been added, yet.
ProxyPass changed into:- [80 to 8069]
   ProxyPass / http://192.168.20.60:8069/
After changed the above line In the web browser typed https://ServerName its automatic open the browser http://servername
SSL mode Enabled in Linux but it autoredirect http instead of https how to solve this issue?
 
                        
Why are you using a ProxyPassReverse / on location / ? What do you expect this should do?