My favorites | Sign in
Logo
                
Search
for
Updated Nov 20 (4 days ago) by c...@b2ck.com
Labels: Phase-Deploy, Featured
SSLHowto  
SSL Howto

Howto activate SSL connection

Activating "secure" connections for Tryton will switch all communications to use SSL: netrpc, XML-RPC, WebDAV and HTTP.

Dependencies

You need to have this package installed on both systems (server, client):

And this one on server:

Generate a self-signed certificate

You can generate a self-signed certificate with this command on the server:

openssl req -new -x509 -keyout /path/to/private/server.pem -out /path/to/certs/server.pem -days 365 -nodes

Start the server

You must edit the configuration file etc/trytond.conf with those options:

secure_netrpc = True
secure_xmlrpc = True
secure_webdav = True
privatekey = /path/to/private/server.pem
certificate = /path/to/certs/server.pem

You must restart the server.

Use it


Sign in to add a comment
Hosted by Google Code