|
SSLHowto
SSL Howto
Howto activate SSL connectionActivating "secure" connections for Tryton will switch all communications to use SSL: netrpc, XML-RPC, WebDAV and HTTP. DependenciesYou need to have this package installed on both systems (server, client): And this one on server: Generate a self-signed certificateYou 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 serverYou 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