1
2csync2 for Debian
3-----------------
4
5You need to create an SSL certificate for the local Csync2
6server. You can create a certificate using the following
7commands:
8
9openssl genrsa -out /etc/csync2_ssl_key.pem 1024
10openssl req -new -key /etc/csync2_ssl_key.pem -out /etc/csync2_ssl_cert.csr
11openssl x509 -req -days 600 -in /etc/csync2_ssl_cert.csr \
12        -signkey /etc/csync2_ssl_key.pem -out /etc/csync2_ssl_cert.pem
13
14 -- Michael Prokop <mika@grml.org>, Fri, 23 Sep 2005 12:11:25 +0200
15
16