I am trying to connect to localhost on 8068 and go to my OpenERP7 instance using SSL. I followed several tutorials but everyone does the same. I created the certificate and the key, and this site in Apache2 (which is already enabled):
<VirtualHost *:443>
   SSLEngine on
   SSLCertificateFile /etc/ssl/openerp/server.crt
   SSLCertificateKeyFile /etc/ssl/openerp/server.key
   ProxyRequests Off
   <Proxy *>
      Order deny,allow Allow from all
   </Proxy>
   ProxyVia On
   ProxyPass / http://127.0.0.1:8068/
   <location / >
      ProxyPassReverse /
   </location> ProxyPassReverse / http://127.0.0.1:8068/
   RequestHeader set "X-Forwarded-Proto" "https"
   # Fix IE problem (httpapache proxy dav error 408/409)
   SetEnv proxy-nokeepalive 1
</VirtualHost>
Then I changed next lines of my OpenERP configuration file:
secure_cert_file = /etc/ssl/openerp/server.crt
secure_pkey_file = /etc/ssl/openerp/server.key
xmlrpcs = True
xmlrpcs_interface =
xmlrpcs_port = 8068
Finally, I restarted both services (Apache2 and OpenERP). When I write on the URL https://localhost:8068 I get 107 ERROR, if I type https://localhost I get 503 ERROR (after asking me whether I trust the server or not). I do not have any idea of what I am doing wrong.
I hope someone can help me to fix this or give me some clue. Thank you.
 
                        
@Rui Andrada thank you! I switched to 8069, but still same problem