Julian DeMarchi wrote:
On 02/08/2011 08:51 PM, Julian De Marchi wrote:
heya--
I issued myself a self-signed ssl cert to use with fred-client. I
attempt to log into the fred system and I receive the following error;
ERROR: socket.sslerror: (1, 'error:14094418:SSL
routines:SSL3_READ_BYTES:tlsv1 alert unknown ca') (localhost:22351)
Certificate not signed by verified certificate authority.
Is there any config options to turn this off? I have trawled though
the server.conf and other files with no luck on finding such an option.
*BUMP*
_______________________________________________
fred-users mailing list
fred-users(a)lists.nic.cz
https://lists.nic.cz/mailman/listinfo/fred-users
Hey,
You dont want to disable the CA authority check, otherwise you cant sign
certs for your users/verify them.
You need to make your own CA and sign certs by it for fred.
There is plenty of guides out there how to create one, depending on your
linux distribution, after creating the CA and signing cert for your fred
server
check the $ROOT/nofred/apache.conf and configure the following lines
correctly:
SSLCertificateFile /your/path/to/cert/signed-cert.pem
SSLCertificateKeyFile /your/path/to/cert/signed-cert-private-key.pem
SSLCACertificateFile /your/path/to/cert/CA-cert.pem
Then sign sertificate for your fred client, and you should be all set.
Georg